You are here

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

File

src/EventSubscriber/Cdf/FileEntityHandler.php, line 48

Class

FileEntityHandler
Manipulates file content entity CDF representation to better support files.

Namespace

Drupal\acquia_contenthub\EventSubscriber\Cdf

Code

public static function getSubscribedEvents() {
  $events[AcquiaContentHubEvents::CREATE_CDF_OBJECT][] = [
    'onCreateCdf',
    90,
  ];
  $events[AcquiaContentHubEvents::PARSE_CDF][] = [
    'onParseCdf',
    110,
  ];
  return $events;
}