You are here

function advanced_menu_menu_attributes_uninstall in Advanced Menu 6.x

Implementation of hook_uninstall().

File

menu_attributes/advanced_menu_menu_attributes.install, line 15

Code

function advanced_menu_menu_attributes_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('advanced_menu_menu_attributes');
  menu_rebuild();
}