Full ELMS Learning Network documentation
function drupal_set_title
cis7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
cle7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
elmsmedia7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
icor7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
meedjum_blog7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
mooc7 bootstrap.inc | drupal_set_title($title = NULL, $output = CHECK_PLAIN) |
Sets the title of the current page.
The title is displayed 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.
$output: Optional flag - normally should be left as CHECK_PLAIN. Only set to PASS_THROUGH if you have already removed any possibly dangerous code from $title using a function like check_plain() or filter_xss(). With this flag the string will be passed through unchanged.
Return value
The updated title of the current page.
135 calls to drupal_set_title()
- adaptivetheme_preprocess_page in sites/
all/ themes/ ulmus/ adaptivetheme/ at_core/ inc/ preprocess.inc - Preprocess variables for page.tpl.php
- advagg_admin_info_form in sites/
all/ modules/ ulmus/ advagg/ advagg.admin.inc - Form builder; Show info about advagg and advagg settings.
- advagg_admin_operations_form in sites/
all/ modules/ ulmus/ advagg/ advagg.admin.inc - Form builder; Do advagg operations.
- advagg_admin_settings_form in sites/
all/ modules/ ulmus/ advagg/ advagg.admin.inc - Form builder; Configure advagg settings.
- advagg_bundler_admin_settings_form in sites/
all/ modules/ ulmus/ advagg/ advagg_bundler/ advagg_bundler.admin.inc - Form builder; Configure advagg settings.
File
- includes/
bootstrap.inc, line 1876 - Functions that need to be loaded on every Drupal request.
Code
function drupal_set_title($title = NULL, $output = CHECK_PLAIN) {
$stored_title = &drupal_static(__FUNCTION__);
if (isset($title)) {
$stored_title = ($output == PASS_THROUGH) ? $title : check_plain($title);
}
return $stored_title;
}