menu_force.install in Menu Force 7
Same filename and directory in other branches
Install, update and uninstall functions for the Menu Force module.
File
menu_force.installView 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
Name![]() |
Description |
---|---|
menu_force_uninstall | Implement hook_uninstall(). |