You are here

public function User::activate in Drupal 8

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

Activates the user.

Return value

$this The called user entity.

Overrides UserInterface::activate

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function activate() {
  $this
    ->get('status')->value = 1;
  return $this;
}