function menu_get_active_title

7.x menu.inc menu_get_active_title()
6.x menu.inc menu_get_active_title()

Gets the title of the current page, as determined by the active trail.

Related topics

1 call to menu_get_active_title()
drupal_get_title in drupal-7.x/includes/bootstrap.inc
Gets the title of the current page.
1 string reference to 'menu_get_active_title'
drupal_get_title in drupal-7.x/includes/bootstrap.inc
Gets the title of the current page.

File

drupal-7.x/includes/menu.inc, line 2611
API for the Drupal menu system.

Code

function menu_get_active_title() {
  $active_trail = menu_get_active_trail();

  foreach (array_reverse($active_trail) as $item) {
    if (!(bool) ($item['type'] & MENU_IS_LOCAL_TASK)) {
      return $item['title'];
    }
  }
}