You are here

public function RouteSubscriberBase::onAlterRoutes in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/RouteSubscriberBase.php \Drupal\Core\Routing\RouteSubscriberBase::onAlterRoutes()

Delegates the route altering to self::alterRoutes().

Parameters

\Drupal\Core\Routing\RouteBuildEvent $event: The route build event.

1 method overrides RouteSubscriberBase::onAlterRoutes()
SpecialAttributesRouteSubscriber::onAlterRoutes in core/lib/Drupal/Core/EventSubscriber/SpecialAttributesRouteSubscriber.php
Delegates the route altering to self::alterRoutes().

File

core/lib/Drupal/Core/Routing/RouteSubscriberBase.php, line 35

Class

RouteSubscriberBase
Provides a base implementation for RouteSubscriber.

Namespace

Drupal\Core\Routing

Code

public function onAlterRoutes(RouteBuildEvent $event) {
  $collection = $event
    ->getRouteCollection();
  $this
    ->alterRoutes($collection);
}