Skip to content

Commit

Permalink
Merge pull request #31 from ruebot/7.x-1.4-ISLANDORA-977
Browse files Browse the repository at this point in the history
ISLANDORA-977 -- Delete drupal variables on uninstall.
  • Loading branch information
adam-vessey committed Sep 25, 2014
2 parents aafe618 + 47dc49d commit bb03749
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions islandora_batch.install
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,16 @@ function islandora_batch_schema() {
return $schema;
}

/**
* Implements hook_uninstall().
*/
function islandora_batch_uninstall() {
$variables = array(
'islandora_batch_java',
);
array_walk($variables, 'variable_del');
}

/**
* Adjust columns tracking error state.
*
Expand Down

0 comments on commit bb03749

Please sign in to comment.