You are here

public function User::checkExistingPassword in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
  2. 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\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());
}