function theme_password in Drupal 7
Same name and namespace in other branches
- 4 includes/form.inc \theme_password()
- 5 includes/form.inc \theme_password()
- 6 includes/form.inc \theme_password()
Returns HTML for a password form element.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #title, #value, #description, #size, #maxlength, #required, #attributes.
Related topics
1 theme call to theme_password()
- system_element_info in modules/
system/ system.module - Implements hook_element_info().
File
- includes/
form.inc, line 4116 - Functions for form and batch generation and processing.
Code
function theme_password($variables) {
$element = $variables['element'];
$element['#attributes']['type'] = 'password';
element_set_attributes($element, array(
'id',
'name',
'size',
'maxlength',
));
_form_set_class($element, array(
'form-text',
));
return '<input' . drupal_attributes($element['#attributes']) . ' />';
}