function SearchPageAccessControlHandler::checkAccess

Same name and namespace in other branches
  1. 8.9.x core/modules/search/src/SearchPageAccessControlHandler.php \Drupal\search\SearchPageAccessControlHandler::checkAccess()
  2. 10 core/modules/search/src/SearchPageAccessControlHandler.php \Drupal\search\SearchPageAccessControlHandler::checkAccess()
  3. 11.x core/modules/search/src/SearchPageAccessControlHandler.php \Drupal\search\SearchPageAccessControlHandler::checkAccess()

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 \Drupal\search\SearchPageInterface $entity */
    if (in_array($operation, [
        '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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.