public User::isAuthenticated()
Returns TRUE if the account is authenticated.
Return value
bool TRUE if the account is authenticated.
Overrides AccountInterface::isAuthenticated
File
- core/modules/user/src/Entity/User.php, line 346
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\Entity
Code
public function isAuthenticated() { return $this->id() > 0; }
Please login to continue.