function UserSession::isAnonymous

Returns TRUE if the account is anonymous.

Return value

bool TRUE if the account is anonymous.

Overrides AccountInterface::isAnonymous

File

core/lib/Drupal/Core/Session/UserSession.php, line 142

Class

UserSession
An implementation of the user account interface for the global user.

Namespace

Drupal\Core\Session

Code

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

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