You are here

i18n_menu_overview.install in Menu per language - i18n menu overview 7.3

Same filename and directory in other branches
  1. 7.2 i18n_menu_overview.install

menu language install file uninstalls the variables declared.

File

i18n_menu_overview.install
View 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

Namesort descending Description
i18n_menu_overview_uninstall Implements of hook_uninstall().