public User::checkExistingPassword(UserInterface $account_unchanged)
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 397
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\Entity
Code
1 2 3 | 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()); } |
Please login to continue.