drupal_get_html_head

Versions
mediamosa-21
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 modules/book/book.module
Process variables for book-export-html.tpl.php.
template_process_html in includes/theme.inc
Process variables for html.tpl.php
template_process_maintenance_page in 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. It is also used in theme_install_page() and theme_update_page() to keep all the variables consistent.

Code

includes/common.inc, line 335

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