public static Password::preRenderPassword($element)
Prepares a #type 'password' render element for input.html.twig.
Parameters
array $element: An associative array containing the properties of the element. Properties used: #title, #value, #description, #size, #maxlength, #placeholder, #required, #attributes.
Return value
array The $element with prepared variables ready for input.html.twig.
File
- core/lib/Drupal/Core/Render/Element/Password.php, line 59
Class
- Password
- Provides a form element for entering a password, with hidden text.
Namespace
Drupal\Core\Render\Element
Code
public static function preRenderPassword($element) { $element['#attributes']['type'] = 'password'; Element::setAttributes($element, array('id', 'name', 'size', 'maxlength', 'placeholder')); static::setAttributes($element, array('form-text')); return $element; }
Please login to continue.