| 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() |
Retrieve output to be displayed in the head tag of the HTML page.
File
- includes/
common.inc, line 128 - Common functions that many Drupal modules will need to reference.
Code
<?php
function drupal_get_html_head() {
$output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
return $output . drupal_set_html_head();
}
?>Login or register to post comments