i18n_menu_overview.install in Menu per language - i18n menu overview 7.2
Same filename and directory in other branches
menu language install file uninstalls the variables declared.
File
i18n_menu_overview.installView source
<?php
/**
* @file
* menu language install file
* uninstalls the variables declared.
*/
/**
* Implements of hook_uninstall().
*/
function i18n_menu_overview_uninstall() {
// Delete each variable for each menu.
$menus = menu_get_menus();
foreach ($menus as $menu => $localized_name) {
$var_name_mnu = 'i18n_menu_overview_mng_' . $menu;
variable_del($var_name_mnu);
}
}
Functions
Name![]() |
Description |
---|---|
i18n_menu_overview_uninstall | Implements of hook_uninstall(). |