class RouteBuildEvent
Represents route building information as event.
Hierarchy
- class \Symfony\Contracts\EventDispatcher\Event implements \Psr\EventDispatcher\StoppableEventInterface
- class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event
- class \Drupal\Core\Routing\RouteBuildEvent extends \Drupal\Component\EventDispatcher\Event
- class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event
Expanded class hierarchy of RouteBuildEvent
13 files declare their use of RouteBuildEvent
- AccessRouteAlterSubscriber.php in core/
modules/ system/ src/ EventSubscriber/ AccessRouteAlterSubscriber.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 - LayoutBuilderRoutes.php in core/
modules/ layout_builder/ src/ Routing/ LayoutBuilderRoutes.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;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
RouteBuildEvent::$routeCollection | protected | property | The route collection. |
RouteBuildEvent::getRouteCollection | public | function | Gets the route collection. |
RouteBuildEvent::__construct | public | function | Constructs a RouteBuildEvent object. |