t('Ingest route name'), 'url' => 'ingest_route/url', 'weight' => 0, ), ); return $reg; } /** * Register a datastream edit route/form. * * @param $islandora_object * @param $ds_id */ function hook_islandora_edit_datastream_registry($islandora_object, $ds_id) {} /** * Alter an object before it gets used further down the stack. * * @param type $object * A Tuque FedoraObject */ function hook_islandora_object_alter($fedora_object) {} /** * Allow modification of an object before ingesting. * * @param type $islandora_object * A Tuque FedoraObject */ function hook_islandora_ingest_pre_ingest($islandora_object) {} /** * Allow modification of objects of a certain content model before ingesting. * * @see hook_islandora_ingest_pre_ingest() */ function hook_CMODEL_PID_islandora_ingest_pre_ingest($islandora_object) {} /** * Allow modules to setup for the purge of a datastream. * * @param object $datastream * A Tuque FedoraDatastream object. */ function hook_islandora_pre_purge_datastream($datastream) {} /** * Allow modules to react after a datastream is purged. * * @param object $object * A Tuque FedoraObject. * @param string $dsid * A id of the former datastream. */ function hook_islandora_post_purge_datastream($object, $dsid) {} /** * Allow modules to react post-purge. * * @param string $object_id * The former object's PID. * @param array $content_models * An array containing the models to which the former object. */ function hook_islandora_post_purge_object($object_id, $content_models) {} /** * Registry hook for required objects. * * Solution packs can include data to create certain objects that describe or * help the objects it would create. This includes collection objects and content * models. * * @see islandora_solution_packs_admin() * @see islandora_install_solution_pack() * @example islandora_islandora_required_objects() */ function hook_islandora_required_objects() {} /** * Registry hook for viewers that can be implemented by solution packs. * * Solution packs can use viewers for their data. This hook lets Islandora know * which viewers there are available. * * @see islandora_get_viewers() * @see islandora_get_viewer_callback() */ function hook_islandora_viewer_info() {} /** * Returns a list of datastreams that are determined to be undeletable. */ function hook_islandora_undeletable_datastreams(array $models) {}