function MigrationInterface::getProcessPlugins
Returns the process plugins.
Parameters
array|null $process: (Optional) A process configuration array. Defaults to NULL. If specified, then the plugins from the given process array are returned. If not specified, then the plugins from this migration's process array are returned.
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 134
Class
- MigrationInterface
- Interface for migrations.
Namespace
Drupal\migrate\PluginCode
public function getProcessPlugins(?array $process = NULL);