You are here

public static function BlockFieldBlockContentImporter::getSubscribedEvents in Entity Share 8.2

File

modules/entity_share_client/src/EventSubscriber/BlockFieldBlockContentImporter.php, line 67

Class

BlockFieldBlockContentImporter
Class BlockFieldBlockContentImporter.

Namespace

Drupal\entity_share_client\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[EntityListDataAlterEvent::EVENT_NAME] = [
    'importBlockContentEntities',
    100,
  ];
  return $events;
}