function VocabularyRouteProvider::getCollectionRoute

Same name and namespace in other branches
  1. 8.9.x core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php \Drupal\taxonomy\Entity\Routing\VocabularyRouteProvider::getCollectionRoute()

Gets the collection route.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.

Return value

\Symfony\Component\Routing\Route|null The generated route, if available.

Overrides DefaultHtmlRouteProvider::getCollectionRoute

File

core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php, line 32

Class

VocabularyRouteProvider

Namespace

Drupal\taxonomy\Entity\Routing

Code

protected function getCollectionRoute(EntityTypeInterface $entity_type) {
    if ($route = parent::getCollectionRoute($entity_type)) {
        $route->setRequirement('_permission', 'access taxonomy overview+administer taxonomy');
        return $route;
    }
}

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