You are here

function popup_block_uninstall in Popup 6.x

Same name and namespace in other branches
  1. 8 modules/popup_block/popup_block.install \popup_block_uninstall()
  2. 7 modules/popup_block/popup_block.install \popup_block_uninstall()
  3. 7.x modules/popup_block/popup_block.install \popup_block_uninstall()

Implementation of hook_uninstall().

File

modules/popup_block/popup_block.install, line 9

Code

function popup_block_uninstall() {
  $variables = array(
    'popup-block-settings',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}