theme_password

5 form.inc theme_password($element)
6 form.inc theme_password($element)
7 form.inc theme_password($variables)
8 form.inc theme_password($variables)

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

File

includes/form.inc, line 3874
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']) . ' />';
}
Login or register to post comments