| Versionen | |
|---|---|
| drupal6 – drupal7 | drupal_get_title() |
Get the title of the current page, for display on the page and in the title bar.
The current page's title.
includes/
<?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;
}
?>
Kommentare
Kommentar hinzufügen