class VocabularyAccessControlHandler

Same name and namespace in other branches
  1. 11.x core/modules/taxonomy/src/VocabularyAccessControlHandler.php \Drupal\taxonomy\VocabularyAccessControlHandler

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

Hierarchy

Expanded class hierarchy of VocabularyAccessControlHandler

See also

\Drupal\taxonomy\Entity\Vocabulary

File

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

Namespace

Drupal\taxonomy
View source
class VocabularyAccessControlHandler extends EntityAccessControlHandler {
  
  /**
   * {@inheritdoc}
   */
  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.