VocabularyAccessControlHandler.php

Same filename and directory in other branches
  1. 9 core/modules/taxonomy/src/VocabularyAccessControlHandler.php
  2. 8.9.x core/modules/taxonomy/src/VocabularyAccessControlHandler.php
  3. 10 core/modules/taxonomy/src/VocabularyAccessControlHandler.php

Namespace

Drupal\taxonomy

File

core/modules/taxonomy/src/VocabularyAccessControlHandler.php

View source
<?php

namespace Drupal\taxonomy;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Defines the access control handler for the taxonomy vocabulary entity type.
 *
 * @see \Drupal\taxonomy\Entity\Vocabulary
 */
class VocabularyAccessControlHandler extends EntityAccessControlHandler {
    
    /**
     * {@inheritdoc}
     */
    protected $viewLabelOperation = TRUE;
    
    /**
     * {@inheritdoc}
     */
    protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
        switch ($operation) {
            case 'view label':
                return AccessResult::allowedIfHasPermissions($account, [
                    'view vocabulary labels',
                    'access taxonomy overview',
                    'administer taxonomy',
                ], 'OR');
            case 'access taxonomy overview':
            case 'view':
                return AccessResult::allowedIfHasPermissions($account, [
                    'access taxonomy overview',
                    'administer taxonomy',
                ], 'OR');
            case 'reset all weights':
                return AccessResult::allowedIfHasPermissions($account, [
                    'administer taxonomy',
                    'edit terms in ' . $entity->id(),
                ], 'OR');
            default:
                return parent::checkAccess($entity, $operation, $account);
        }
    }

}

Classes

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

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