function RoutePreloader::getSubscribedEvents
File
- 
              core/lib/ Drupal/ Core/ Routing/ RoutePreloader.php, line 121 
Class
- RoutePreloader
- Defines a class which preloads non-admin routes.
Namespace
Drupal\Core\RoutingCode
public static function getSubscribedEvents() {
  // 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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
