popup_block.install in Popup 8
Same filename and directory in other branches
File
modules/popup_block/popup_block.installView source
<?php
//$id:
/**
* Implementation of hook_uninstall().
*/
function popup_block_uninstall() {
$variables = array(
'popup-block-settings',
);
foreach ($variables as $variable) {
variable_del($variable);
}
}
Functions
Name | Description |
---|---|
popup_block_uninstall | Implementation of hook_uninstall(). |