Same name and namespace in other branches
  1. 4.6.x includes/bootstrap.inc \drupal_set_title()
  2. 5.x includes/path.inc \drupal_set_title()
  3. 6.x includes/path.inc \drupal_set_title()
  4. 7.x includes/bootstrap.inc \drupal_set_title()

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

Parameters

$title: Optional string value to assign to the page title; or if set to NULL (default), leaves the current title unchanged.

Return value

The updated title of the current page.

38 calls to drupal_set_title()
block_admin_configure in modules/block.module
Menu callback; displays the block configuration form.
blog_page_user in modules/blog.module
Displays a Drupal page containing recent blog entries of a given user.
book_admin_edit in modules/book.module
Display an administrative view of the hierarchy of a book.
book_outline in modules/book.module
Implementation of function book_outline() Handles all book outline operations.
comment_form_add_preview in modules/comment.module

... See full list

File

includes/path.inc, line 188
Functions to handle paths in Drupal, including path aliasing.

Code

function drupal_set_title($title = NULL) {
  static $stored_title;
  if (isset($title)) {
    $stored_title = $title;
  }
  return $stored_title;
}