function User::checkExistingPassword

Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
  2. 10 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
  3. 11.x core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()

Overrides UserInterface::checkExistingPassword

File

core/modules/user/src/Entity/User.php, line 407

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function checkExistingPassword(UserInterface $account_unchanged) {
    $existing = $this->get('pass')->existing;
    return $existing !== NULL && strlen($existing) > 0 && \Drupal::service('password')->check(trim($existing), $account_unchanged->getPassword());
}

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