You are here

public function NodeReference::defineValueProcessPipeline in Drupal 8

Apply any custom processing to the field bundle migrations.

Parameters

\Drupal\migrate\Plugin\MigrationInterface $migration: The migration entity.

string $field_name: The field name we're processing the value for.

array $data: The array of field data from FieldValues::fieldData().

Overrides FieldPluginBase::defineValueProcessPipeline

File

core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php, line 23

Class

NodeReference
Plugin annotation @MigrateField( id = "nodereference", core = {6}, type_map = { "nodereference" = "entity_reference", }, source_module = "nodereference", destination_module = "core", )

Namespace

Drupal\migrate_drupal\Plugin\migrate\field

Code

public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
  $process = [
    'plugin' => 'sub_process',
    'source' => $field_name,
    'process' => [
      'target_id' => [
        'plugin' => 'get',
        'source' => 'nid',
      ],
    ],
  ];
  $migration
    ->setProcessOfProperty($field_name, $process);
}