theme_hidden($variables)Theme a hidden form element.
$variables An associative array containing:
A themed HTML string representing the form element.
includes/form.inc, line 2736
<?php
function theme_hidden($variables) {
$element = $variables['element'];
return '<input type="hidden" name="' . $element['#name'] . '" id="' . $element['#id'] . '" value="' . check_plain($element['#value']) . "\" " . drupal_attributes($element['#attributes']) . " />\n";
}
?>