Skip to content

Commit

Permalink
Merge pull request #13 from ruebot/7.x-ISLANDORA-977
Browse files Browse the repository at this point in the history
Address ISLANDORA-977.
  • Loading branch information
mjordan committed Sep 22, 2014
2 parents ae035ca + 18a6b52 commit c89868f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions islandora_checksum.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

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

/**
* Implements hook_uninstall().
*/
function islandora_checksum_uninstall() {
$variables = array(
'islandora_checksum_checksum_type',
'islandora_checksum_enable_checksum',
'islandora_checksum_log_retro_errors',
);
array_walk($variables, 'variable_del');
}

0 comments on commit c89868f

Please sign in to comment.