class RouteBuildEvent in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Routing/RouteBuildEvent.php \Drupal\Core\Routing\RouteBuildEvent
- 9 core/lib/Drupal/Core/Routing/RouteBuildEvent.php \Drupal\Core\Routing\RouteBuildEvent
Represents route building information as event.
Hierarchy
- class \Drupal\Core\Routing\RouteBuildEvent extends \Drupal\Component\EventDispatcher\Event
Expanded class hierarchy of RouteBuildEvent
18 files declare their use of RouteBuildEvent
- AdminRouteSubscriberTest.php in core/
modules/ system/ tests/ src/ Unit/ Routing/ AdminRouteSubscriberTest.php - ContentModerationRouteSubscriberTest.php in core/
modules/ content_moderation/ tests/ src/ Unit/ ContentModerationRouteSubscriberTest.php - EntityResourcePostRouteSubscriber.php in core/
modules/ rest/ src/ EventSubscriber/ EntityResourcePostRouteSubscriber.php - EntityRouteAlterSubscriber.php in core/
lib/ Drupal/ Core/ EventSubscriber/ EntityRouteAlterSubscriber.php - EntityRouteProviderSubscriber.php in core/
lib/ Drupal/ Core/ EventSubscriber/ EntityRouteProviderSubscriber.php
File
- core/
lib/ Drupal/ Core/ Routing/ RouteBuildEvent.php, line 11
Namespace
Drupal\Core\RoutingView source
class RouteBuildEvent extends Event {
/**
* The route collection.
*
* @var \Symfony\Component\Routing\RouteCollection
*/
protected $routeCollection;
/**
* Constructs a RouteBuildEvent object.
*
* @param \Symfony\Component\Routing\RouteCollection $route_collection
* The route collection.
*/
public function __construct(RouteCollection $route_collection) {
$this->routeCollection = $route_collection;
}
/**
* Gets the route collection.
*/
public function getRouteCollection() {
return $this->routeCollection;
}
}