drupal_get_html_head

Versions
4.6 – 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 modules/book/book.module
Process variables for book-export-html.tpl.php.
template_preprocess_maintenance_page in includes/theme.inc
The variables generated here is a mirror of template_preprocess_page(). This preprocessor will run it's course when theme_maintenance_page() is invoked. It is also used in theme_install_page() and theme_update_page() to keep all the variables...
template_process_html in includes/theme.inc
Process variables for html.tpl.php

Code

includes/common.inc, line 350

<?php
function drupal_get_html_head() {
  $elements = drupal_add_html_head();
  drupal_alter('html_head', $elements);
  return drupal_render($elements);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.