Browse Source

Merge pull request #171 from willtp87/ISLANDORA-746

ISLANDORA-746 hook_fedora_repository_postprocess_solution_pack basic
pull/172/merge
Jonathan Green 12 years ago
parent
commit
ab9e886c97
  1. 14
      fedora_repository.api.php

14
fedora_repository.api.php

@ -31,3 +31,17 @@ function hook_islandora_tabs($content_models, $pid, $page_number) {
return $tabset;
}
/**
* Implements hook_postprocess_solution_pack().
* This hook fires after the batch job to ingest a solution pack finishes.
*
* @param string $module
* Name of the module that spcified the solution pack.
*/
function hook_fedora_repository_postprocess_solution_pack($module) {
// Do something that requires the objects to be ingested ie. add XACML.
return;
}

Loading…
Cancel
Save