You are here

function theme_admin_drilldown_menu_tree in Admin 7.2

Same name and namespace in other branches
  1. 6.2 theme/theme.inc \theme_admin_drilldown_menu_tree()

Alternative to theme_menu_tree(). Ensures custom theme-level overrides of theme_menu_tree() do not break markup expected by admin.

1 theme call to theme_admin_drilldown_menu_tree()
theme_admin_drilldown_menu_tree_output in theme/theme.inc
Alternative to menu_tree_output() which uses admin implementations of the core menu theme functions.

File

theme/theme.inc, line 113

Code

function theme_admin_drilldown_menu_tree($variables) {
  $tree = $variables['menu'];
  return theme_menu_tree($tree);
}