drupal_get_html_head
- Versions
- 4.6 – 7
drupal_get_html_head()
Retrieve output to be displayed in the head tag of the HTML page.
Code
includes/common.inc, line 56
<?php
function drupal_get_html_head() {
global $base_url;
$output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
$output .= "<base href=\"$base_url/\" />\n";
$output .= theme('stylesheet_import', 'misc/drupal.css');
return $output . drupal_set_html_head();
}
?>Login or register to post comments 