Same name and namespace in other branches
  1. 4.6.x includes/common.inc \drupal_get_html_head()
  2. 4.7.x includes/common.inc \drupal_get_html_head()
  3. 5.x includes/common.inc \drupal_get_html_head()
  4. 6.x includes/common.inc \drupal_get_html_head()

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

4 calls to drupal_get_html_head()
DrupalAddFeedTestCase::testBasicFeedAddNoTitle in modules/simpletest/tests/common.test
Test drupal_add_feed() with paths, URLs, and titles.
template_preprocess_book_export_html in modules/book/book.module
Processes 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
Theme process function for theme_maintenance_field().

File

includes/common.inc, line 352
Common functions that many Drupal modules will need to reference.

Code

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