UserSession::isAnonymous

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

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;
}
doc_Drupal
2016-10-29 09:53:03
Comments
Leave a Comment

Please login to continue.