function VocabularyAccessControlHandler::checkAccess

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

File

core/modules/taxonomy/src/VocabularyAccessControlHandler.php, line 20

Class

VocabularyAccessControlHandler
Defines the access control handler for the taxonomy vocabulary entity type.

Namespace

Drupal\taxonomy

Code

protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
  switch ($operation) {
    case 'access taxonomy overview':
    case 'view':
      return AccessResult::allowedIfHasPermissions($account, [
        'access taxonomy overview',
        'administer taxonomy',
      ], 'OR');
    default:
      return parent::checkAccess($entity, $operation, $account);
  }
}

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