class VocabularyAccessControlHandler
Same name and namespace in other branches
- 11.x core/modules/taxonomy/src/VocabularyAccessControlHandler.php \Drupal\taxonomy\VocabularyAccessControlHandler
Defines the access control handler for the taxonomy vocabulary entity type.
Hierarchy
- class \Drupal\Core\Entity\EntityHandlerBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait
- class \Drupal\Core\Entity\EntityAccessControlHandler extends \Drupal\Core\Entity\EntityAccessControlHandlerInterface implements \Drupal\Core\Entity\EntityHandlerBase
- class \Drupal\taxonomy\VocabularyAccessControlHandler implements \Drupal\Core\Entity\EntityAccessControlHandler
- class \Drupal\Core\Entity\EntityAccessControlHandler extends \Drupal\Core\Entity\EntityAccessControlHandlerInterface implements \Drupal\Core\Entity\EntityHandlerBase
Expanded class hierarchy of VocabularyAccessControlHandler
See also
\Drupal\taxonomy\Entity\Vocabulary
File
-
core/
modules/ taxonomy/ src/ VocabularyAccessControlHandler.php, line 15
Namespace
Drupal\taxonomyView 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.