public function User::setPassword in Drupal 8
Same name and namespace in other branches
- 9 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\EntityCode
public function setPassword($password) {
$this
->get('pass')->value = $password;
return $this;
}