You are here

public function Migration::getProcess in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Entity/Migration.php \Drupal\migrate\Entity\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

1 call to Migration::getProcess()
Migration::mergeProcessOfProperty in core/modules/migrate/src/Entity/Migration.php
Merge the process pipeline configuration for a single property.

File

core/modules/migrate/src/Entity/Migration.php, line 497
Contains \Drupal\migrate\Entity\Migration.

Class

Migration
Defines the Migration entity.

Namespace

Drupal\migrate\Entity

Code

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