You are here

class RouteSubscriber in Drupal 8

Same name in this branch
  1. 8 core/modules/views/src/EventSubscriber/RouteSubscriber.php \Drupal\views\EventSubscriber\RouteSubscriber
  2. 8 core/modules/node/src/Routing/RouteSubscriber.php \Drupal\node\Routing\RouteSubscriber
  3. 8 core/modules/path/src/Routing/RouteSubscriber.php \Drupal\path\Routing\RouteSubscriber
  4. 8 core/modules/media_library/src/Routing/RouteSubscriber.php \Drupal\media_library\Routing\RouteSubscriber
  5. 8 core/modules/config_translation/src/Routing/RouteSubscriber.php \Drupal\config_translation\Routing\RouteSubscriber
  6. 8 core/modules/field_ui/src/Routing/RouteSubscriber.php \Drupal\field_ui\Routing\RouteSubscriber
  7. 8 core/modules/media/tests/modules/media_test_ckeditor/src/Routing/RouteSubscriber.php \Drupal\media_test_ckeditor\Routing\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

Namesort descending Modifiers Type Description Overrides
RouteSubscriber::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to.
RouteSubscriber::onDynamicRouteEvent public function Provides routes on route rebuild time.