class RouteSubscriber in Drupal 8
Same name in this branch
- 8 core/modules/views/src/EventSubscriber/RouteSubscriber.php \Drupal\views\EventSubscriber\RouteSubscriber
- 8 core/modules/node/src/Routing/RouteSubscriber.php \Drupal\node\Routing\RouteSubscriber
- 8 core/modules/path/src/Routing/RouteSubscriber.php \Drupal\path\Routing\RouteSubscriber
- 8 core/modules/media_library/src/Routing/RouteSubscriber.php \Drupal\media_library\Routing\RouteSubscriber
- 8 core/modules/config_translation/src/Routing/RouteSubscriber.php \Drupal\config_translation\Routing\RouteSubscriber
- 8 core/modules/field_ui/src/Routing/RouteSubscriber.php \Drupal\field_ui\Routing\RouteSubscriber
- 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\RoutingView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
public static | function | Returns an array of event names this subscriber wants to listen to. | |
RouteSubscriber:: |
public | function | Provides routes on route rebuild time. |