You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
352 B
20 lines
352 B
8 years ago
|
<?php
|
||
|
/**
|
||
|
* @file
|
||
|
* Implementations of installation hooks.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Implements hook_uninstall().
|
||
|
*/
|
||
|
function upei_roblib_ill_uninstall() {
|
||
|
$variables = array(
|
||
|
'upei_roblib_ill_add_url',
|
||
|
'upei_roblib_ill_auth_url',
|
||
|
'upei_roblib_ill_relais_key',
|
||
|
'upei_roblib_ill_library_symbol',
|
||
|
);
|
||
|
array_walk($variables, 'variable_del');
|
||
|
}
|