public static function AjaxResponseSubscriber::getSubscribedEvents in Geolocation Field 8
Same name and namespace in other branches
- 8.3 src/EventSubscriber/AjaxResponseSubscriber.php \Drupal\geolocation\EventSubscriber\AjaxResponseSubscriber::getSubscribedEvents()
- 8.2 src/EventSubscriber/AjaxResponseSubscriber.php \Drupal\geolocation\EventSubscriber\AjaxResponseSubscriber::getSubscribedEvents()
File
- src/
EventSubscriber/ AjaxResponseSubscriber.php, line 101
Class
- AjaxResponseSubscriber
- Response subscriber to handle AJAX responses.
Namespace
Drupal\geolocation\EventSubscriberCode
public static function getSubscribedEvents() {
return [
KernelEvents::RESPONSE => [
[
'onResponse',
],
],
];
}