public function Permission::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/Permission.php, line 37
Definition of Drupal\user\Plugin\views\access\Permission.

Class

Permission
Access plugin that provides permission-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

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