You are here

public function MigrationInterface::mergeProcessOfProperty in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/MigrationInterface.php \Drupal\migrate\Plugin\MigrationInterface::mergeProcessOfProperty()
  2. 10 core/modules/migrate/src/Plugin/MigrationInterface.php \Drupal\migrate\Plugin\MigrationInterface::mergeProcessOfProperty()

Merge the process pipeline configuration for a single property.

Parameters

string $property: The property of which to merge the passed in process pipeline configuration.

array $process_of_property: The process pipeline configuration to be merged with the existing process pipeline configuration.

Return value

$this The migration entity.

See also

Drupal\migrate_drupal\Plugin\migrate\load\LoadEntity::processLinkField()

1 method overrides MigrationInterface::mergeProcessOfProperty()
Migration::mergeProcessOfProperty in core/modules/migrate/src/Plugin/Migration.php
Merge the process pipeline configuration for a single property.

File

core/modules/migrate/src/Plugin/MigrationInterface.php, line 254

Class

MigrationInterface
Interface for migrations.

Namespace

Drupal\migrate\Plugin

Code

public function mergeProcessOfProperty($property, array $process_of_property);