You are here

function mobile_navigation_uninstall in Mobile Navigation 7

Same name and namespace in other branches
  1. 8 mobile_navigation.install \mobile_navigation_uninstall()

Implements hook_uninstall().

File

./mobile_navigation.install, line 10
Mobile Navigation install file.

Code

function mobile_navigation_uninstall() {
  variable_del('mobile_navigation_breakpoint');
  variable_del('mobile_navigation_menuselector');
  variable_del('mobile_navigation_plugin');
  variable_del('mobile_navigation_showEffect');
  variable_del('mobile_navigation_showitems');
  variable_del('mobile_navigation_tabhandler');
  variable_del('mobile_navigation_width');
  variable_del('mobile_navigation_special_classes');
  variable_del('mobile_navigation_mainPageSelector');
  variable_del('mobile_navigation_useMask');
  variable_del('mobile_navigation_menu_label');
  variable_del('mobile_navigation_expand_active_trail');
}