You are here

popup_menu.install in Popup 6.x

File

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

// $Id:

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

Functions

Namesort descending Description
popup_menu_uninstall Implementation of hook_uninstall().