You are here

public function UserSearch::access in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/Search/UserSearch.php \Drupal\user\Plugin\Search\UserSearch::access()
  2. 9 core/modules/user/src/Plugin/Search/UserSearch.php \Drupal\user\Plugin\Search\UserSearch::access()

File

core/modules/user/src/Plugin/Search/UserSearch.php, line 99

Class

UserSearch
Executes a keyword search for users against the {users} database table.

Namespace

Drupal\user\Plugin\Search

Code

public function access($operation = 'view', AccountInterface $account = NULL, $return_as_object = FALSE) {
  $result = AccessResult::allowedIf(!empty($account) && $account
    ->hasPermission('access user profiles'))
    ->cachePerPermissions();
  return $return_as_object ? $result : $result
    ->isAllowed();
}