| Versions | |
|---|---|
| 7 | theme_html_tag($variables) |
Returns HTML for a generic HTML tag with attributes.
$variables An associative array containing:
drupal/
<?php
function theme_html_tag($variables) {
$element = $variables['element'];
if (!isset($element['#value'])) {
return '<' . $element['#tag'] . drupal_attributes($element['#attributes']) . " />\n";
}
else {
$output = '<' . $element['#tag'] . drupal_attributes($element['#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;
}
}
?>