public function 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

TRUE Returns whether the user has access to the view.

Overrides AccessPluginBase::access

File

drupal/core/modules/user/lib/Drupal/user/Plugin/views/access/Role.php, line 37
Definition of Drupal\user\Plugin\views\access\Role.

Class

Role
Access plugin that provides role-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

public function access(AccountInterface $account) {
  return user_access('access all views', $account) || array_intersect(array_filter($this->options['role']), $account->roles);
}