You are here

public function User::isAuthenticated in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::isAuthenticated()

Returns TRUE if the account is authenticated.

Return value

bool TRUE if the account is authenticated.

Overrides AccountInterface::isAuthenticated

1 call to User::isAuthenticated()
User::getRoles in core/modules/user/src/Entity/User.php
Returns a list of roles.

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function isAuthenticated() {
  return $this
    ->id() > 0;
}