public function User::checkExistingPassword in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
- 9 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
File
- core/
modules/ user/ src/ Entity/ User.php, line 407
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());
}