You are here

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

File

modules/acquia_contenthub_s3/src/EventSubscriber/Cdf/S3FileEntityHandler.php, line 36

Class

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

Namespace

Drupal\acquia_contenthub_s3\EventSubscriber\Cdf

Code

public static function getSubscribedEvents() {

  // At this point the entity has been already crated, hence the weight.
  $events[AcquiaContentHubEvents::PARSE_CDF][] = [
    'onParseCdf',
    90,
  ];
  return $events;
}