You are here

function popup_descriptions_uninstall in Popup 7

Same name and namespace in other branches
  1. 8 modules/popup_descriptions/popup_descriptions.install \popup_descriptions_uninstall()
  2. 7.x modules/popup_descriptions/popup_descriptions.install \popup_descriptions_uninstall()

Implementation of hook_uninstall().

File

modules/popup_descriptions/popup_descriptions.install, line 8

Code

function popup_descriptions_uninstall() {
  $variables = array(
    'description-popup-title',
    'description-popup-format',
    'description-popup-position',
    'description-popup-mode',
    'description-popup-id',
    'description-popup-ids',
    'description-popup-path',
    'description-popup-paths',
    'description-popup-admin',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}