public function AccountProxy::getRoles in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::getRoles()
Returns a list of roles.
Parameters
bool $exclude_locked_roles: (optional) If TRUE, locked roles (anonymous/authenticated) are not returned.
Return value
array List of role IDs.
Overrides AccountInterface::getRoles
File
- core/
lib/ Drupal/ Core/ Session/ AccountProxy.php, line 111
Class
- AccountProxy
- A proxied implementation of AccountInterface.
Namespace
Drupal\Core\SessionCode
public function getRoles($exclude_locked_roles = FALSE) {
return $this
->getAccount()
->getRoles($exclude_locked_roles);
}