You are here

popup_block.install in Popup 7.x

File

modules/popup_block/popup_block.install
View source
<?php

//$id:

/**
 * Implementation of hook_uninstall().
 */
function popup_block_uninstall() {
  $variables = array(
    'popup-block-settings',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}

Functions

Namesort descending Description
popup_block_uninstall Implementation of hook_uninstall().