You are here

function theme_admin_drilldown_menu_item in Admin 6.2

Same name and namespace in other branches
  1. 7.2 theme/theme.inc \theme_admin_drilldown_menu_item()

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

1 theme call to theme_admin_drilldown_menu_item()
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 109

Code

function theme_admin_drilldown_menu_item($link, $has_children, $menu = '', $in_active_trail = FALSE, $extra_class = NULL) {
  return theme_menu_item($link, $has_children, $menu, $in_active_trail, $extra_class);
}