You are here

function popup_menu_uninstall in Popup 7

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

Implementation of hook_uninstall().

File

modules/popup_menu/popup_menu.install, line 9

Code

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