Skip to content

Commit

Permalink
Merge pull request #7 from ruebot/7.x-ISLANDORA-977
Browse files Browse the repository at this point in the history
Address ISLANDORA-977.
  • Loading branch information
ppound committed Sep 12, 2014
2 parents 2c30187 + b6590b6 commit e98f897
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions islandora_xmlsitemap.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

/**
* @file
* This file contains all install related hooks.
*/

/**
* Implements hook_uninstall().
*/
function islandora_xmlsitemap_uninstall() {
$variables = array(
'islandora_xmlsitemap_number_of_pids_to_process',
'islandora_xmlsitemap_last_modified_value',
'islandora_xmlsitemap_last_modified_field',
'islandora_namespace_restriction_enforced',
);
array_walk($variables, 'variable_del');
}

0 comments on commit e98f897

Please sign in to comment.