User::isBlocked

public 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 281

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function isBlocked() {
  return $this->get('status')->value == 0;
}
doc_Drupal
2016-10-29 09:52:08
Comments
Leave a Comment

Please login to continue.