You are here

public function User::setPassword in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::setPassword()

Sets the user password.

Parameters

string $password: The new unhashed password.

Return value

$this The called user entity.

Overrides UserInterface::setPassword

File

core/modules/user/src/Entity/User.php, line 229

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function setPassword($password) {
  $this
    ->get('pass')->value = $password;
  return $this;
}