function DynamicPageCacheSubscriber::getSubscribedEvents
File
- 
              core/modules/ dynamic_page_cache/ src/ EventSubscriber/ DynamicPageCacheSubscriber.php, line 269 
Class
- DynamicPageCacheSubscriber
- Returns cached responses as early and avoiding as much work as possible.
Namespace
Drupal\dynamic_page_cache\EventSubscriberCode
public static function getSubscribedEvents() : array {
  $events = [];
  // Run after AuthenticationSubscriber (necessary for the 'user' cache
  // context; priority 300) and MaintenanceModeSubscriber (Dynamic Page Cache
  // should not be polluted by maintenance mode-specific behavior; priority
  // 30), but before ContentControllerSubscriber (updates _controller, but
  // that is a no-op when Dynamic Page Cache runs; priority 25).
  $events[KernelEvents::REQUEST][] = [
    'onRequest',
    27,
  ];
  // Run before HtmlResponseSubscriber::onRespond(), which has priority 0.
  $events[KernelEvents::RESPONSE][] = [
    'onResponse',
    100,
  ];
  return $events;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
