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()
AddFeedTest::testBasicFeedAddNoTitle in drupal/core/modules/system/lib/Drupal/system/Tests/Common/AddFeedTest.php
Tests drupal_add_feed() with paths, URLs, and titles.
template_preprocess_book_export_html in drupal/core/modules/book/book.module
Preprocesses variables for book-export-html.tpl.php.
template_process_html in drupal/core/includes/theme.inc
Process variables for html.tpl.php
template_process_maintenance_page in drupal/core/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.

File

drupal/core/includes/common.inc, line 359
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);
}