Definition

drupal_get_title()
drupal/includes/bootstrap.inc, line 390

Description

Get the title of the current page, for display on the page and in the title bar.

Code

function drupal_get_title() {
  $title = drupal_set_title();

  if (!isset($title)) {
    // during a bootstrap, menu.inc is not included and thus we cannot provide a title
    if (function_exists('menu_get_active_title')) {
      $title = check_plain(menu_get_active_title());
    }
  }

  return $title;
}