You are here

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

File

src/EventSubscriber/CdfAttributes/EntityChannelsAttribute.php, line 18

Class

EntityChannelsAttribute
Notates the metadata with a CDF version marker.

Namespace

Drupal\acquia_contenthub\EventSubscriber\CdfAttributes

Code

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