You are here

public function User::block in Zircon Profile 8

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

Blocks the user.

Return value

\Drupal\user\UserInterface The called user entity.

Overrides UserInterface::block

File

core/modules/user/src/Entity/User.php, line 301
Contains \Drupal\user\Entity\User.

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

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