You are here

public function ImportProcessorPluginBase::processEntity in Entity Share 8.3

Method called on STAGE_PROCESS_ENTITY.

If the plugin reacts to this stage.

Parameters

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

\Drupal\Core\Entity\ContentEntityInterface $processed_entity: The entity being processed.

array $entity_json_data: The entity JSON data.

Overrides ImportProcessorInterface::processEntity

4 methods override ImportProcessorPluginBase::processEntity()
ChangedTime::processEntity in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/ChangedTime.php
Method called on STAGE_PROCESS_ENTITY.
EntityReference::processEntity in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/EntityReference.php
Method called on STAGE_PROCESS_ENTITY.
PhysicalFile::processEntity in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/PhysicalFile.php
Plugin annotation @SuppressWarnings(PHPMD . ErrorControlOperator);
Revision::processEntity in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/Revision.php
Method called on STAGE_PROCESS_ENTITY.

File

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

Class

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

Namespace

Drupal\entity_share_client\ImportProcessor

Code

public function processEntity(RuntimeImportContext $runtime_import_context, ContentEntityInterface $processed_entity, array $entity_json_data) {
}