drupal_get_html_head

Definition

drupal_get_html_head()
drupal/includes/common.inc, line 144

Description

Retrieve output to be displayed in the head tag of the HTML page.

Code

function drupal_get_html_head() {
  $output = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
  return $output . drupal_set_html_head();
}