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