public static function XframeSubscriber::getSubscribedEvents in X-Frame-Options Configuration 8
File
- src/
EventSubscriber/ XframeSubscriber.php, line 59
Class
- XframeSubscriber
- Subscribing an event.
Namespace
Drupal\x_frame_options_configuration\EventSubscriberCode
public static function getSubscribedEvents() {
// Adds the event in the list of KernelEvents::RESPONSE with priority -10.
$events[KernelEvents::RESPONSE][] = [
'onKernelResponse',
-10,
];
return $events;
}