function Migration::getProcess

Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::getProcess()
  2. 10 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::getProcess()
  3. 11.x core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::getProcess()

Gets the normalized process plugin configuration.

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

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

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.