function 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/core/includes/bootstrap.inc
Gets the title of the current page.
1 string reference to 'menu_get_active_title'
drupal_get_title in drupal/core/includes/bootstrap.inc
Gets the title of the current page.

File

drupal/core/includes/menu.inc, line 2629
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'];
    }
  }
}