function theme_html_tag
Returns HTML for a generic HTML tag with attributes.
Parameters
$variables: An associative array containing:
- element: An associative array describing the tag:
- #tag: The tag name to output. Typical tags added to the HTML HEAD:
- meta: To provide meta information, such as a page refresh.
- link: To refer to stylesheets and other contextual information.
- script: To load JavaScript.
- #attributes: (optional) An array of HTML attributes to apply to the tag.
- #value: (optional) A string containing tag content, such as inline CSS.
- #value_prefix: (optional) A string to prepend to #value, e.g. a CDATA wrapper prefix.
- #value_suffix: (optional) A string to append to #value, e.g. a CDATA wrapper suffix.
- #tag: The tag name to output. Typical tags added to the HTML HEAD:
Related topics
1 theme call to theme_html_tag()
- system_element_info in modules/
system/ system.module - Implements hook_element_info().
File
-
includes/
theme.inc, line 2317
Code
function theme_html_tag($variables) {
$element = $variables['element'];
$attributes = isset($element['#attributes']) ? drupal_attributes($element['#attributes']) : '';
if (!isset($element['#value'])) {
return '<' . $element['#tag'] . $attributes . " />\n";
}
else {
$output = '<' . $element['#tag'] . $attributes . '>';
if (isset($element['#value_prefix'])) {
$output .= $element['#value_prefix'];
}
$output .= $element['#value'];
if (isset($element['#value_suffix'])) {
$output .= $element['#value_suffix'];
}
$output .= '</' . $element['#tag'] . ">\n";
return $output;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.