You are here

protected function ConfigPagesAccessControlHandler::checkAccess in Config Pages 8.3

Same name and namespace in other branches
  1. 8 src/ConfigPagesAccessControlHandler.php \Drupal\config_pages\ConfigPagesAccessControlHandler::checkAccess()
  2. 8.2 src/ConfigPagesAccessControlHandler.php \Drupal\config_pages\ConfigPagesAccessControlHandler::checkAccess()

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

src/ConfigPagesAccessControlHandler.php, line 20

Class

ConfigPagesAccessControlHandler
Defines the access control handler for the config page entity type.

Namespace

Drupal\config_pages

Code

protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
  if ($operation === 'view') {
    return AccessResult::allowed();
  }
  if ($operation == 'update') {
    if ($account
      ->hasPermission('edit config_pages entity')) {
      return AccessResult::allowed()
        ->cachePerPermissions();
    }
    if ($entity
      ->getEntityTypeId() === 'config_pages_type' && $account
      ->hasPermission('edit ' . $entity
      ->id() . ' config page entity')) {
      return AccessResult::allowed()
        ->cachePerPermissions();
    }
    if ($entity
      ->getEntityTypeId() === 'config_pages' && $account
      ->hasPermission('edit ' . $entity
      ->bundle() . ' config page entity')) {
      return AccessResult::allowed()
        ->cachePerPermissions();
    }
  }
  return parent::checkAccess($entity, $operation, $account);
}