User::isAnonymous

public User::isAnonymous()

Returns TRUE if the account is anonymous.

Return value

bool TRUE if the account is anonymous.

Overrides AccountInterface::isAnonymous

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function isAnonymous() {
  return $this->id() == 0;
}
doc_Drupal
2016-10-29 09:52:08
Comments
Leave a Comment

Please login to continue.