Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
i18nmenu_translated_tree($menu_name)
contributions/i18n/i18nmenu/i18nmenu.module, line 113
Get localized menu tree
<?php
function i18nmenu_translated_tree($menu_name) {
static $menu_output = array();
if (!isset($menu_output[$menu_name])) {
$tree = menu_tree_page_data($menu_name);
i18nmenu_localize_tree($tree);
$menu_output[$menu_name] = menu_tree_output($tree);
}
return $menu_output[$menu_name];
}
?>