You are here

public function NodeSearch::access in Drupal 10

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

File

core/modules/node/src/Plugin/Search/NodeSearch.php, line 211

Class

NodeSearch
Handles searching for node entities using the Search module index.

Namespace

Drupal\node\Plugin\Search

Code

public function access($operation = 'view', AccountInterface $account = NULL, $return_as_object = FALSE) {
  $result = AccessResult::allowedIfHasPermission($account, 'access content');
  return $return_as_object ? $result : $result
    ->isAllowed();
}