function Password::valueCallback

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Render/Element/Password.php \Drupal\Core\Render\Element\Password::valueCallback()
  2. 10 core/lib/Drupal/Core/Render/Element/Password.php \Drupal\Core\Render\Element\Password::valueCallback()
  3. 11.x core/lib/Drupal/Core/Render/Element/Password.php \Drupal\Core\Render\Element\Password::valueCallback()

Overrides FormElement::valueCallback

1 call to Password::valueCallback()
PasswordTest::testValueCallback in core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php
@covers ::valueCallback

File

core/lib/Drupal/Core/Render/Element/Password.php, line 75

Class

Password
Provides a form element for entering a password, with hidden text.

Namespace

Drupal\Core\Render\Element

Code

public static function valueCallback(&$element, $input, FormStateInterface $form_state) {
    if ($input !== FALSE && $input !== NULL) {
        // This should be a string, but allow other scalars since they might be
        // valid input in programmatic form submissions.
        return is_scalar($input) ? (string) $input : '';
    }
    return NULL;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.