function User::checkExistingPassword
Same name in other branches
- 9 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
- 8.9.x core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
- 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 426
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
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.