function NodeReference::defineValueProcessPipeline

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

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