Created
January 12, 2014 18:44
-
-
Save mjordan/8388642 to your computer and use it in GitHub Desktop.
Implementation of example hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implements hook_islandora_object_ingested(). | |
* | |
* Create technical metadata (specifically FITS) datastreams for the | |
* input object. | |
*/ | |
function islandora_fits_islandora_object_ingested(AbstractObject $object) { | |
module_load_include('inc', 'islandora_fits', 'includes/utilities'); | |
islandora_fits_create_techmd($object); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment