class RouteSubscriber

Provides backwards-compatible routes for the path module.

Hierarchy

  • class \Drupal\path\Routing\RouteSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of RouteSubscriber

1 string reference to 'RouteSubscriber'
path.services.yml in core/modules/path/path.services.yml
core/modules/path/path.services.yml
1 service uses RouteSubscriber
path.route_subscriber_bc in core/modules/path/path.services.yml
Drupal\path\Routing\RouteSubscriber

File

core/modules/path/src/Routing/RouteSubscriber.php, line 13

Namespace

Drupal\path\Routing
View source
class RouteSubscriber implements EventSubscriberInterface {
  
  /**
   * Provides routes on route rebuild time.
   *
   * @param \Drupal\Core\Routing\RouteBuildEvent $event
   *   The route build event.
   */
  public function onDynamicRouteEvent(RouteBuildEvent $event) {
    $route_collection = $event->getRouteCollection();
    $route_collection->add('path.admin_add', new BcRoute());
    $route_collection->add('path.admin_edit', new BcRoute());
    $route_collection->add('path.delete', new BcRoute());
    $route_collection->add('path.admin_overview', new BcRoute());
    $route_collection->add('path.admin_overview_filter', new BcRoute());
  }
  
  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    $events[RoutingEvents::DYNAMIC][] = [
      'onDynamicRouteEvent',
      0,
    ];
    return $events;
  }

}

Members

Title Sort descending Modifiers Object type Summary
RouteSubscriber::getSubscribedEvents public static function
RouteSubscriber::onDynamicRouteEvent public function Provides routes on route rebuild time.

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