You are here

public function MigrationInterface::setProcessOfProperty 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::setProcessOfProperty()

Set the process pipeline configuration for an individual destination field.

This method allows you to set the process pipeline configuration for a single property within the full process pipeline configuration.

Parameters

string $property: The property of which to set the process pipeline configuration.

mixed $process_of_property: The process pipeline configuration to be set for this property.

Return value

$this The migration entity.

1 method overrides MigrationInterface::setProcessOfProperty()
Migration::setProcessOfProperty in core/modules/migrate/src/Entity/Migration.php
Set the process pipeline configuration for an individual destination field.

File

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

Class

MigrationInterface
Interface for migrations.

Namespace

Drupal\migrate\Entity

Code

public function setProcessOfProperty($property, $process_of_property);