Skip to content

Commit dcaf199

Browse files
committed
Merge pull request #35 from ruebot/7.x-ISLANDORA-977
Address ISLANDORA-977.
2 parents 0cac246 + 57a73ee commit dcaf199

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

islandora_fits.install

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
/**
4+
* @file
5+
* This file contains all install related hooks.
6+
*/
7+
8+
/**
9+
* Implements hook_uninstall().
10+
*/
11+
function islandora_fits_uninstall() {
12+
$variables = array(
13+
'islandora_fits_techmd_dsid',
14+
'islandora_fits_executable_path',
15+
);
16+
array_walk($variables, 'variable_del');
17+
}

0 commit comments

Comments
 (0)