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
Prepares variables for book export templates.
template_process_html in drupal/core/includes/theme.inc
Processes variables for html.html.twig.
template_process_maintenance_page in drupal/core/includes/theme.inc
Theme process function for theme_maintenance_field().

File

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