function theme_password
7.x form.inc | theme_password( |
6.x form.inc | theme_password($element) |
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 drupal-7.x/
modules/ system/ system.module - Implements hook_element_info().
File
- drupal-7.x/
includes/ form.inc, line 3916 - 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']) . ' />';
}