You are here

public function Role::access in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/views/access/Role.php \Drupal\user\Plugin\views\access\Role::access()

Determine if the current user has access or not.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user who wants to access this view.

Return value

bool Returns whether the user has access to the view.

Overrides AccessPluginBase::access

File

core/modules/user/src/Plugin/views/access/Role.php, line 71

Class

Role
Access plugin that provides role-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

public function access(AccountInterface $account) {
  return !empty(array_intersect(array_filter($this->options['role']), $account
    ->getRoles()));
}