public function User::isAuthenticated in Drupal 9
Same name and namespace in other branches
- 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\EntityCode
public function isAuthenticated() {
return $this
->id() > 0;
}