public AccountProxy::isAuthenticated()
Returns TRUE if the account is authenticated.
Return value
bool TRUE if the account is authenticated.
Overrides AccountInterface::isAuthenticated
File
- core/lib/Drupal/Core/Session/AccountProxy.php, line 88
Class
- AccountProxy
- A proxied implementation of AccountInterface.
Namespace
Drupal\Core\Session
Code
1 2 3 | public function isAuthenticated() { return $this ->getAccount()->isAuthenticated(); } |
Please login to continue.