You are here

public static function PublisherSubscriberStatusCdfAttribute::getSubscribedEvents in Acquia Content Hub 8.2

File

src/EventSubscriber/CdfAttributes/PublisherSubscriberStatusCdfAttribute.php, line 36

Class

PublisherSubscriberStatusCdfAttribute
Extracts user specific data for identifying duplicate and anonymous users.

Namespace

Drupal\acquia_contenthub\EventSubscriber\CdfAttributes

Code

public static function getSubscribedEvents() {
  $events[AcquiaContentHubEvents::BUILD_CLIENT_CDF][] = [
    'onBuildClientCdf',
    100,
  ];
  return $events;
}