function VocabularyRouteProvider::getResetPageRoute

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

Gets the reset page route.

Parameters

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

Return value

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

1 call to VocabularyRouteProvider::getResetPageRoute()
VocabularyRouteProvider::getRoutes in core/modules/taxonomy/src/Entity/Routing/VocabularyRouteProvider.php
Provides routes for entities.

File

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

Class

VocabularyRouteProvider

Namespace

Drupal\taxonomy\Entity\Routing

Code

protected function getResetPageRoute(EntityTypeInterface $entity_type) {
    $route = new Route('/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/reset');
    $route->setDefault('_entity_form', 'taxonomy_vocabulary.reset');
    $route->setDefault('_title', 'Reset');
    $route->setRequirement('_permission', $entity_type->getAdminPermission());
    $route->setOption('_admin_route', TRUE);
    $route->setOption('parameters', [
        'taxonomy_vocabulary' => [
            'with_config_overrides' => TRUE,
        ],
    ]);
    return $route;
}

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