You are here

public function MigrationInterface::mergeProcessOfProperty in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Entity/MigrationInterface.php \Drupal\migrate\Entity\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/Entity/Migration.php
Merge the process pipeline configuration for a single property.

File

core/modules/migrate/src/Entity/MigrationInterface.php, line 270
Contains \Drupal\migrate\Entity\MigrationInterface.

Class

MigrationInterface
Interface for migrations.

Namespace

Drupal\migrate\Entity

Code

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