You are here

public function Migration::getProcess in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::getProcess()
  2. 9 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::getProcess()

Get the normalized process pipeline configuration describing the process plugins.

The process configuration is always normalized. All shorthand processing will be expanded into their full representations.

Return value

array The normalized configuration describing the process plugins.

Overrides MigrationInterface::getProcess

See also

https://www.drupal.org/node/2129651#get-shorthand

2 calls to Migration::getProcess()
Migration::getProcessPlugins in core/modules/migrate/src/Plugin/Migration.php
Returns the process plugins.
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/Migration.php, line 631

Class

Migration
Defines the Migration plugin.

Namespace

Drupal\migrate\Plugin

Code

public function getProcess() {
  return $this
    ->getProcessNormalized($this->process);
}