You are here

AnalyticsEvents.php in Googalytics - Google Analytics 8

Namespace

Drupal\ga

File

src/AnalyticsEvents.php
View source
<?php

namespace Drupal\ga;


/**
 * Contains all events thrown by ga module.
 */
final class AnalyticsEvents {

  /**
   * Name of event fired to collect analytics commands for the current request.
   *
   * The event listener receives a \Drupal\ga\Event\CollectEvent instance.
   *
   * @Event
   *
   * @var string
   */
  const COLLECT = 'ga.collect';

}

Classes

Namesort descending Description
AnalyticsEvents Contains all events thrown by ga module.