function 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 368

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function isAnonymous() {
  return $this->id() == 0;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.