You are here

function menu_force_uninstall in Menu Force 7

Implement hook_uninstall().

File

./menu_force.install, line 10
Install, update and uninstall functions for the Menu Force module.

Code

function menu_force_uninstall() {
  $node_types = node_type_get_types();
  foreach ($node_types as $type) {
    variable_del('menu_force_' . $type->type);
  }
}