You are here

public function TokenAuthUser::setExistingPassword in Simple OAuth (OAuth2) & OpenID Connect 8.4

Same name and namespace in other branches
  1. 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setExistingPassword()
  2. 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setExistingPassword()
  3. 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setExistingPassword()
  4. 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setExistingPassword()

Sets the existing plain text password.

Required for validation when changing the password, name or email fields.

Parameters

string $password: The existing plain text password of the user.

Return value

$this

Overrides UserInterface::setExistingPassword

File

src/Authentication/TokenAuthUser.php, line 832

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

public function setExistingPassword($password) {
  return $this->subject
    ->setExistingPassword($password);
}