drupal_get_html_head

  1. drupal
    1. 4.7 common.inc
    2. 5 common.inc
    3. 6
    4. 7
Versions
4.7 – 7 drupal_get_html_head()

Retrieve output to be displayed in the HEAD tag of the HTML page.

▾ 3 functions call drupal_get_html_head()

template_preprocess_book_export_html in drupal/modules/book/book.module
Process variables for book-export-html.tpl.php.
template_process_html in drupal/includes/theme.inc
Process variables for html.tpl.php
template_process_maintenance_page in drupal/includes/theme.inc
The variables array generated here is a mirror of template_process_html(). This processor will run its course when theme_maintenance_page() is invoked.

Code

drupal/includes/common.inc, line 339

<?php
function drupal_get_html_head() {
  $elements = drupal_add_html_head();
  drupal_alter('html_head', $elements);
  return drupal_render($elements);
}
?>