You are here

function theme_admin_drilldown_menu_tree in Admin 6.2

Same name and namespace in other branches
  1. 7.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 100

Code

function theme_admin_drilldown_menu_tree($tree) {
  return theme_menu_tree($tree);
}