public function User::checkExistingPassword in Drupal 8
Same name and namespace in other branches
- 9 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::checkExistingPassword()
Checks the existing password if set.
Parameters
\Drupal\user\UserInterface $account_unchanged: The unchanged user entity to compare against.
Return value
bool TRUE if the correct existing password was provided.
Overrides UserInterface::checkExistingPassword
See also
UserInterface::setExistingPassword()
File
- core/
modules/ user/ src/ Entity/ User.php, line 414
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
public function checkExistingPassword(UserInterface $account_unchanged) {
return strlen($this
->get('pass')->existing) > 0 && \Drupal::service('password')
->check(trim($this
->get('pass')->existing), $account_unchanged
->getPassword());
}