diff --git a/islandora.api.php b/islandora.api.php index 0f575486..7231dff9 100644 --- a/islandora.api.php +++ b/islandora.api.php @@ -1,23 +1,83 @@ t('Ingest Route Name'), 'url' => 'ingest_route/url', 'weight' => 0), * ); */ -function hook_islandora_ingest_registry($collection_object) {} \ No newline at end of file +function hook_islandora_ingest_registry($collection_object) {} + + +/** + * alter an object before it gets used further down the stack + * @param type $object + * a tuque FedoraObject + */ +function hook_islandora_object_alter ($fedora_object){} + +/** + * insert or remove rendered elements by implementing this function + * in your module + * @param type $arr + * an arr of rendered views + */ +function hook_islandora_display_alter ($arr){} + +/** + * + * @param type $islandora_object + * a tuque FedoraObject + * @param array $content_models + * @param string $collection_pid + */ +function hook_islandora_ingest_pre_ingest($islandora_object, $content_models, $collection_pid){} +