You are here

public function User::block in Drupal 8

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

Blocks the user.

Return value

$this The called user entity.

Overrides UserInterface::block

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

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