protected SearchPageAccessControlHandler::checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
Performs access checks.
This method is supposed to be overwritten by extending classes that do their own custom access checking.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for which to check access.
string $operation: The entity operation. Usually one of 'view', 'view label', 'update' or 'delete'.
\Drupal\Core\Session\AccountInterface $account: The user for which to check access.
Return value
\Drupal\Core\Access\AccessResultInterface The access result.
Overrides EntityAccessControlHandler::checkAccess
File
- core/modules/search/src/SearchPageAccessControlHandler.php, line 21
 
Class
- SearchPageAccessControlHandler
 - Defines the access control handler for the search page entity type.
 
Namespace
Drupal\search
Code
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
  /** @var $entity \Drupal\search\SearchPageInterface */
  if (in_array($operation, array('delete', 'disable'))) {
    if ($entity->isDefaultSearch()) {
      return AccessResult::forbidden()->addCacheableDependency($entity);
    }
    else {
      return parent::checkAccess($entity, $operation, $account)->addCacheableDependency($entity);
    }
  }
  if ($operation == 'view') {
    if (!$entity->status()) {
      return AccessResult::forbidden()->addCacheableDependency($entity);
    }
    $plugin = $entity->getPlugin();
    if ($plugin instanceof AccessibleInterface) {
      return $plugin->access($operation, $account, TRUE)->addCacheableDependency($entity);
    }
    return AccessResult::allowed()->addCacheableDependency($entity);
  }
  return parent::checkAccess($entity, $operation, $account);
}
Please login to continue.