You are here

function theme_admin_drilldown_menu_item in Admin 7.2

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

Code

function theme_admin_drilldown_menu_item($variables) {
  $link = $variables['link'];
  $has_children = $variables['has_children'];
  $menu = $variables['menu'];
  $in_active_trail = $variables['in_active_trail'];
  $extra_class = $variables['extra_class'];
  return theme_menu_item($link, $has_children, $menu, $in_active_trail, $extra_class);
}