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 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
Code
function drupal_get_html_head() {
$elements = drupal_add_html_head();
drupal_alter('html_head', $elements);
return drupal_render($elements);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.