ISLANDORA_TN_FIELD, 'entity_type' => 'node', 'bundle' => ISLANDORA_COLLECTION_CONTENT_TYPE, 'label' => $t("Thumbnail"), 'description' => $t("A thumbnail for the Fedora resource"), 'required' => FALSE, ); field_create_instance($tn_field_instance); drupal_set_message($t('Field %name was created successfully', array('%name' => ISLANDORA_TN_FIELD))); } // Add MODS field. if (field_info_field(ISLANDORA_MODS_FIELD)) { $mods_field_instance = array( 'field_name' => ISLANDORA_MODS_FIELD, 'entity_type' => 'node', 'bundle' => ISLANDORA_COLLECTION_CONTENT_TYPE, 'label' => $t("MODS"), 'description' => $t("A MODS record for the Fedora resource"), 'required' => FALSE, ); field_create_instance($mods_field_instance); drupal_set_message($t('Field %name was created successfully', array('%name' => ISLANDORA_MODS_FIELD))); } }