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

1
2
3
public function isAnonymous() {
  return $this->uid == 0;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.