You are here

menu_force.install in Menu Force 7

Same filename and directory in other branches
  1. 8 menu_force.install

Install, update and uninstall functions for the Menu Force module.

File

menu_force.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Menu Force module.
 */

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

Functions

Namesort descending Description
menu_force_uninstall Implement hook_uninstall().