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

File

drupal/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);
}