You are here

public function MigrationInterface::getProcessPlugins in Drupal 8

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

Returns the process plugins.

Parameters

array $process: A process configuration array.

Return value

\Drupal\migrate\Plugin\MigrateProcessInterface[][] An associative array. The keys are the destination property names. Values are process pipelines. Each pipeline contains an array of plugins.

1 method overrides MigrationInterface::getProcessPlugins()
Migration::getProcessPlugins in core/modules/migrate/src/Plugin/Migration.php
Returns the process plugins.

File

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

Class

MigrationInterface
Interface for migrations.

Namespace

Drupal\migrate\Plugin

Code

public function getProcessPlugins(array $process = NULL);