function User::isAnonymous

Returns TRUE if the account is anonymous.

Return value

bool TRUE if the account is anonymous.

Overrides AccountInterface::isAnonymous

1 call to User::isAnonymous()
User::activate in core/modules/user/src/Entity/User.php
Activates the user.

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

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

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