function theme_rangefield in Elements 6
Same name and namespace in other branches
- 7 elements.theme.inc \theme_rangefield()
Returns HTML for a rangefield form element.
Parameters
$element: An associative array containing the properties of the element. Properties used: #title, #value, #description, #size, #maxlength, #placeholder, #min, #max, #step, #required, #attributes.
File
- ./
elements.theme.inc, line 232 - The theme include file for the elements module.
Code
function theme_rangefield($element) {
$element['#attributes']['type'] = 'range';
element_set_attributes($element, array(
'id',
'name',
'value',
'size',
'maxlength',
'placeholder',
'min',
'max',
'step',
));
_form_set_class($element, array(
'form-text',
'form-range',
));
$output = '<input' . drupal_attributes($element['#attributes']) . ' />';
$output = _elements_theme_form_element_wrapper($element, $output);
return $output;
}