You are here

public function User::isBlocked in Drupal 9

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

Returns TRUE if the user is blocked.

Return value

bool TRUE if the user is blocked, false otherwise.

Overrides UserInterface::isBlocked

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

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