Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldFile.php

function FieldFile::transform

Overrides ProcessPluginBase::transform

File

core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php, line 66

Class

FieldFile

Namespace

Drupal\file\Plugin\migrate\process\d6

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $options = unserialize($value['data']);
    // Try to look up the ID of the migrated file. If one cannot be found, it
    // means the file referenced by the current field item did not migrate for
    // some reason -- file migration is notoriously brittle -- and we do NOT
    // want to send invalid file references into the field system (it causes
    // fatal errors), so return an empty item instead.
    $lookup_result = $this->migrateLookup
        ->lookup('d6_file', [
        $value['fid'],
    ]);
    if ($lookup_result) {
        return [
            'target_id' => $lookup_result[0]['fid'],
            'display' => $value['list'],
            'description' => $options['description'] ?? '',
            'alt' => $options['alt'] ?? '',
            'title' => $options['title'] ?? '',
        ];
    }
    else {
        return [];
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal