Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Routing/RouteBuildEvent.php \Drupal\Core\Routing\RouteBuildEvent
  2. 9 core/lib/Drupal/Core/Routing/RouteBuildEvent.php \Drupal\Core\Routing\RouteBuildEvent

Represents route building information as event.

Hierarchy

  • class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event

Expanded class hierarchy of RouteBuildEvent

21 files declare their use of RouteBuildEvent
AccessRouteAlterSubscriber.php in core/modules/system/src/EventSubscriber/AccessRouteAlterSubscriber.php
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

... See full list

File

core/lib/Drupal/Core/Routing/RouteBuildEvent.php, line 11

Namespace

Drupal\Core\Routing
View 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

Namesort descending Modifiers Type Description Overrides
RouteBuildEvent::$routeCollection protected property The route collection.
RouteBuildEvent::getRouteCollection public function Gets the route collection.
RouteBuildEvent::__construct public function Constructs a RouteBuildEvent object.