You are here

public static function RouteAccessResponseSubscriber::getSubscribedEvents in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/EventSubscriber/RouteAccessResponseSubscriber.php \Drupal\Core\EventSubscriber\RouteAccessResponseSubscriber::getSubscribedEvents()

File

core/lib/Drupal/Core/EventSubscriber/RouteAccessResponseSubscriber.php, line 50

Class

RouteAccessResponseSubscriber
Response subscriber to bubble the route's access result's cacheability.

Namespace

Drupal\Core\EventSubscriber

Code

public static function getSubscribedEvents() {

  // Priority 10, so that it runs before FinishResponseSubscriber, which will
  // expose the cacheability metadata in the form of headers.
  $events[KernelEvents::RESPONSE][] = [
    'onRespond',
    10,
  ];
  return $events;
}