FileField.php in Drupal 10
File
core/modules/file/src/Plugin/migrate/field/d6/FileField.php
View source
<?php
namespace Drupal\file\Plugin\migrate\field\d6;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Row;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
class FileField extends FieldPluginBase {
public function getFieldWidgetMap() {
return [
'filefield_widget' => 'file_generic',
];
}
public function getFieldFormatterMap() {
return [
'default' => 'file_default',
'url_plain' => 'file_url_plain',
'path_plain' => 'file_url_plain',
'image_plain' => 'image',
'image_nodelink' => 'image',
'image_imagelink' => 'image',
];
}
public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
$process = [
'plugin' => 'd6_field_file',
'source' => $field_name,
];
$migration
->mergeProcessOfProperty($field_name, $process);
}
public function getFieldType(Row $row) {
return $row
->getSourceProperty('widget_type') == 'imagefield_widget' ? 'image' : 'file';
}
}
Classes
Name |
Description |
FileField |
Plugin annotation
@MigrateField(
id = "filefield",
core = {6},
source_module = "filefield",
destination_module = "file"
) |