Full ELMS Learning Network documentation
function drupal_get_html_head
cis7 common.inc | drupal_get_html_head() |
cle7 common.inc | drupal_get_html_head() |
elmsmedia7 common.inc | drupal_get_html_head() |
icor7 common.inc | drupal_get_html_head() |
meedjum_blog7 common.inc | drupal_get_html_head() |
mooc7 common.inc | drupal_get_html_head() |
Retrieves output to be displayed in the HEAD tag of the HTML page.
7 calls to drupal_get_html_head()
- imce-page.tpl.php in sites/
all/ modules/ ulmus/ imce/ tpl/ imce-page.tpl.php - template_preprocess_advanced_help_popup in sites/
all/ modules/ ulmus/ advanced_help/ advanced_help.module - Fill in a bunch of page variables for our specialized popup page.
- template_preprocess_book_export_html in modules/
book/ book.module - Processes variables for book-export-html.tpl.php.
- template_preprocess_video_filter_dashboard in sites/
all/ modules/ ulmus/ video_filter/ video_filter.module - Template preprocess function for video_filter_dashboard().
- template_process_html in includes/
theme.inc - Process variables for html.tpl.php
File
- 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);
}