User::isAuthenticated

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;
}
doc_Drupal
2016-10-29 09:52:08
Comments
Leave a Comment

Please login to continue.