You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
797 B
27 lines
797 B
<?php |
|
|
|
/** |
|
* @file |
|
* This file contains all install related hooks. |
|
*/ |
|
|
|
/** |
|
* Implements hook_install(). |
|
*/ |
|
function islandora_basic_image_install() { |
|
module_load_include('inc', 'islandora', 'include/fields'); |
|
|
|
// Ensure the basic image node type is available. |
|
node_types_rebuild(); |
|
|
|
// Add default islandora fields. |
|
islandora_add_fields_to_bundle(ISLANDORA_BASIC_IMAGE_CONTENT_TYPE); |
|
|
|
// Create medium size field and add to bundle. |
|
islandora_create_field(array( |
|
'field_name' => ISLANDORA_BASIC_IMAGE_MEDIUM_SIZE_FIELD, |
|
'type' => 'image', |
|
)); |
|
islandora_add_field_to_bundle(ISLANDORA_BASIC_IMAGE_CONTENT_TYPE, ISLANDORA_BASIC_IMAGE_MEDIUM_SIZE_FIELD, "Medium Size", "A display copy of the image"); |
|
|
|
}
|
|
|