You are here

public static function PardotEventSubscriber::getSubscribedEvents in Pardot Integration 8

Same name and namespace in other branches
  1. 2.x src/EventSubscriber/PardotEventSubscriber.php \Drupal\pardot\EventSubscriber\PardotEventSubscriber::getSubscribedEvents()

File

src/EventSubscriber/PardotEventSubscriber.php, line 67

Class

PardotEventSubscriber
Provides a response event subscriber for Pardot.

Namespace

Drupal\pardot\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[KernelEvents::REQUEST][] = array(
    'evaluateTrackingScope',
  );
  return $events;
}