function menu_get_active_trail
Same name and namespace in other branches
- 7.x drupal-7.x/includes/menu.inc \menu_get_active_trail()
Gets the active trail (path to root menu root) of the current page.
See menu_set_active_trail() for details of return value.
Related topics
2 calls to menu_get_active_trail()
- menu_get_active_breadcrumb in drupal-6.x/
includes/ menu.inc - Get the breadcrumb for the current page, as determined by the active trail.
- menu_get_active_title in drupal-6.x/
includes/ menu.inc - Get the title of the current page, as determined by the active trail.
Archivo
- drupal-6.x/
includes/ menu.inc, line 1595 - API for the Drupal menu system.
Código
function menu_get_active_trail() {
return menu_set_active_trail();
}