You are here

public function ImportProcessorPluginBase::prepareImportableEntityData in Entity Share 8.3

Method called on STAGE_PREPARE_IMPORTABLE_ENTITY_DATA.

If the plugin reacts to this stage.

Parameters

\Drupal\entity_share_client\RuntimeImportContext $runtime_import_context: The import context.

array $entity_json_data: The entity JSON data.

Overrides ImportProcessorInterface::prepareImportableEntityData

4 methods override ImportProcessorPluginBase::prepareImportableEntityData()
BlockFieldBlockContentImporter::prepareImportableEntityData in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/BlockFieldBlockContentImporter.php
Method called on STAGE_PREPARE_IMPORTABLE_ENTITY_DATA.
DefaultDataProcessor::prepareImportableEntityData in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/DefaultDataProcessor.php
Method called on STAGE_PREPARE_IMPORTABLE_ENTITY_DATA.
EmbeddedEntityImporter::prepareImportableEntityData in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/EmbeddedEntityImporter.php
Method called on STAGE_PREPARE_IMPORTABLE_ENTITY_DATA.
LinkInternalContentImporter::prepareImportableEntityData in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/LinkInternalContentImporter.php
Method called on STAGE_PREPARE_IMPORTABLE_ENTITY_DATA.

File

modules/entity_share_client/src/ImportProcessor/ImportProcessorPluginBase.php, line 187

Class

ImportProcessorPluginBase
Defines a base class from which other processors may extend.

Namespace

Drupal\entity_share_client\ImportProcessor

Code

public function prepareImportableEntityData(RuntimeImportContext $runtime_import_context, array &$entity_json_data) {
}