You are here

public static function RouteProviderLazyBuilder::getSubscribedEvents in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php \Drupal\Core\Routing\RouteProviderLazyBuilder::getSubscribedEvents()
  2. 10 core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php \Drupal\Core\Routing\RouteProviderLazyBuilder::getSubscribedEvents()

File

core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php, line 151

Class

RouteProviderLazyBuilder
A Route Provider front-end for all Drupal-stored routes.

Namespace

Drupal\Core\Routing

Code

public static function getSubscribedEvents() {
  $events[RoutingEvents::DYNAMIC][] = [
    'routerRebuilding',
    3000,
  ];
  $events[RoutingEvents::FINISHED][] = [
    'routerRebuildFinished',
    -3000,
  ];
  return $events;
}