You are here

public function Permission::access in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\Permission::access()
  2. 9 core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\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

bool Returns whether the user has access to the view.

Overrides AccessPluginBase::access

File

core/modules/user/src/Plugin/views/access/Permission.php, line 83

Class

Permission
Access plugin that provides permission-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

public function access(AccountInterface $account) {
  return $account
    ->hasPermission($this->options['perm']);
}