function FieldMigration::getProcess

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

Overrides Migration::getProcess

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\migrate

Code

public function getProcess() {
    if (!$this->init) {
        $this->init = TRUE;
        $this->fieldDiscovery
            ->addAllFieldProcesses($this);
    }
    return parent::getProcess();
}

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