function theme_html_tag
theme_html_tag($variables)
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
File
- includes/theme.inc, line 2277
- The theme system, which controls the output of Drupal.
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; } }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!theme.inc/function/theme_html_tag/7.x