menu_get_active_menu_names

  1. drupal
    1. 7
Versions
7 menu_get_active_menu_names()

Get the active menu for the current page - determines the active trail.

Related topics

▾ 2 functions call menu_get_active_menu_names()

book_page_alter in drupal/modules/book/book.module
Implements hook_page_alter().
menu_link_get_preferred in drupal/includes/menu.inc
Lookup the preferred menu link for a given system path.

Code

drupal/includes/menu.inc, line 2223

<?php
function menu_get_active_menu_names() {
  return menu_set_active_menu_names();
}
?>