From 3698f8fd289da59a09ec9155a49d45ba3af53077 Mon Sep 17 00:00:00 2001 From: William Panting Date: Fri, 14 Sep 2012 13:56:56 -0300 Subject: [PATCH] ISLANDORA-746 hook_fedora_repository_postprocess_solution_pack basic doc --- fedora_repository.api.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/fedora_repository.api.php b/fedora_repository.api.php index 82bfccca..c564f1d8 100644 --- a/fedora_repository.api.php +++ b/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; + +}