static function SendOrderAnalyticsSubscriber::getSubscribedEvents in Commerce Google Analytics 8
File
- src/
EventSubscriber/ SendOrderAnalyticsSubscriber.php, line 19
Class
- SendOrderAnalyticsSubscriber
- Sends Ecommerce tracking data to google analytics when an order is placed.
Namespace
Drupal\commerce_google_analytics\EventSubscriberCode
static function getSubscribedEvents() {
$events['commerce_order.place.post_transition'] = [
'sendOrderAnalytics',
-100,
];
return $events;
}