You are here

public function Migration::getProcess in Drupal 8

Same name and namespace in other branches
  1. 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

4 calls to Migration::getProcess()
FieldMigration::getProcess in core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php
Get the normalized process pipeline configuration describing the process plugins.
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.
ProfileValues::getProcess in core/modules/user/src/Plugin/migrate/ProfileValues.php
Get the normalized process pipeline configuration describing the process plugins.
2 methods override Migration::getProcess()
FieldMigration::getProcess in core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php
Get the normalized process pipeline configuration describing the process plugins.
ProfileValues::getProcess in core/modules/user/src/Plugin/migrate/ProfileValues.php
Get the normalized process pipeline configuration describing the process plugins.

File

core/modules/migrate/src/Plugin/Migration.php, line 569

Class

Migration
Defines the Migration plugin.

Namespace

Drupal\migrate\Plugin

Code

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