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

File

core/lib/Drupal/Core/Routing/RoutePreloader.php, line 102

Class

RoutePreloader
Defines a class that can pre-load non-admin routes.

Namespace

Drupal\Core\Routing

Code

public static function getSubscribedEvents() : array {

  // Set a really low priority to catch as many as possible routes.
  $events[RoutingEvents::ALTER] = [
    'onAlterRoutes',
    -1024,
  ];
  $events[RoutingEvents::FINISHED] = [
    'onFinishedRoutes',
  ];

  // Load the routes before the controller is executed (which happens after
  // the kernel request event).
  $events[KernelEvents::REQUEST][] = [
    'onRequest',
  ];
  return $events;
}