function VocabularyRouteProvider::getRoutes

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php \Drupal\taxonomy\Entity\Routing\VocabularyRouteProvider::getRoutes()
  2. 10 core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php \Drupal\taxonomy\Entity\Routing\VocabularyRouteProvider::getRoutes()
  3. 11.x core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php \Drupal\taxonomy\Entity\Routing\VocabularyRouteProvider::getRoutes()

Overrides DefaultHtmlRouteProvider::getRoutes

File

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

Class

VocabularyRouteProvider

Namespace

Drupal\taxonomy\Entity\Routing

Code

public function getRoutes(EntityTypeInterface $entity_type) {
    $collection = parent::getRoutes($entity_type);
    if ($reset_page_route = $this->getResetPageRoute($entity_type)) {
        $collection->add("entity.taxonomy_vocabulary.reset_form", $reset_page_route);
    }
    if ($overview_page_route = $this->getOverviewPageRoute($entity_type)) {
        $collection->add("entity.taxonomy_vocabulary.overview_form", $overview_page_route);
    }
    return $collection;
}

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