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; }
Please login to continue.