Last active
January 3, 2016 01:19
-
-
Save mjordan/8388603 to your computer and use it in GitHub Desktop.
Example Drupal / Islandora 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 | |
/** | |
* Notify modules that the given object was ingested. | |
* | |
* This hook is called after an object has been successfully ingested. | |
* | |
* @note | |
* If ingested directly via the FedoraApiM object this will not be called | |
* as we don't have acces to the ingested object at that time. | |
* | |
* @param AbstractObject $object | |
* The object that was ingested. | |
*/ | |
function hook_islandora_object_ingested(AbstractObject $object) { | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment