You are here

public function AccountProxy::getRoles in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 79
Contains \Drupal\Core\Session\AccountProxy.

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

public function getRoles($exclude_locked_roles = FALSE) {
  return $this
    ->getAccount()
    ->getRoles($exclude_locked_roles);
}