function FileField::processCckFieldValues

Same name in this branch
  1. 8.9.x core/modules/file/src/Plugin/migrate/cckfield/d6/FileField.php \Drupal\file\Plugin\migrate\cckfield\d6\FileField::processCckFieldValues()

Overrides CckFieldPluginBase::processCckFieldValues

File

core/modules/file/src/Plugin/migrate/cckfield/d7/FileField.php, line 52

Class

FileField
Plugin annotation @MigrateCckField( id = "file", core = {7}, source_module = "file", destination_module = "file" )

Namespace

Drupal\file\Plugin\migrate\cckfield\d7

Code

public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
    $process = [
        'plugin' => 'sub_process',
        'source' => $field_name,
        'process' => [
            'target_id' => 'fid',
            'display' => 'display',
            'description' => 'description',
        ],
    ];
    $migration->mergeProcessOfProperty($field_name, $process);
}

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