| 5 common.inc | drupal_get_html_head() |
| 6 common.inc | drupal_get_html_head() |
| 7 common.inc | drupal_get_html_head() |
| 8 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()
File
- includes/
common.inc, line 343 - 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);
}
Login or register to post comments