RouteSubscriber.php

Same filename in this branch
  1. 8.9.x core/modules/media/tests/modules/media_test_ckeditor/src/Routing/RouteSubscriber.php
Same filename and directory in other branches
  1. 10 core/modules/block_content/src/Routing/RouteSubscriber.php
  2. 11.x core/modules/block_content/src/Routing/RouteSubscriber.php
  3. 10 core/modules/serialization/tests/modules/user_route_alter_test/src/Routing/RouteSubscriber.php
  4. 11.x core/modules/serialization/tests/modules/user_route_alter_test/src/Routing/RouteSubscriber.php
  5. 11.x core/modules/workspaces_ui/src/Routing/RouteSubscriber.php

Namespace

Drupal\path\Routing

File

core/modules/path/src/Routing/RouteSubscriber.php

View source
<?php

namespace Drupal\path\Routing;

use Drupal\Core\Routing\BcRoute;
use Drupal\Core\Routing\RouteBuildEvent;
use Drupal\Core\Routing\RoutingEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
 * Provides backwards-compatible routes for the path module.
 */
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;
  }

}

Classes

Title Deprecated Summary
RouteSubscriber Provides backwards-compatible routes for the path module.

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