public function FieldMigration::getProcess in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal/src/Plugin/migrate/FieldMigration.php \Drupal\migrate_drupal\Plugin\migrate\FieldMigration::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 Migration::getProcess
See also
https://www.drupal.org/node/2129651#get-shorthand
2 calls to FieldMigration::getProcess()
- D7Comment::getProcess in core/
modules/ comment/ src/ Plugin/ migrate/ D7Comment.php - Get the normalized process pipeline configuration describing the process plugins.
- User::getProcess in core/
modules/ user/ src/ Plugin/ migrate/ User.php - Get the normalized process pipeline configuration describing the process plugins.
2 methods override FieldMigration::getProcess()
- D7Comment::getProcess in core/
modules/ comment/ src/ Plugin/ migrate/ D7Comment.php - Get the normalized process pipeline configuration describing the process plugins.
- User::getProcess in core/
modules/ user/ src/ Plugin/ migrate/ User.php - Get the normalized process pipeline configuration describing the process plugins.
File
- core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ FieldMigration.php, line 91
Class
- FieldMigration
- Migration plugin class for migrations dealing with field config and values.
Namespace
Drupal\migrate_drupal\Plugin\migrateCode
public function getProcess() {
if (!$this->init) {
$this->init = TRUE;
$this->fieldDiscovery
->addAllFieldProcesses($this);
}
return parent::getProcess();
}