drupal_get_title
Definition
drupal_get_title()
includes/path.inc, line 166
Description
Get the title of the current page, for display on the page and in the title bar.
Return value
The current page's title.
Code
<?php
function drupal_get_title() {
$title = drupal_set_title();
// during a bootstrap, menu.inc is not included and thus we cannot provide a title
if (!isset($title) && function_exists('menu_get_active_title')) {
$title = check_plain(menu_get_active_title());
}
return $title;
}
?> 