diff --git a/src/Plugin/migrate/field/d7/PhysicalDimensions.php b/src/Plugin/migrate/field/d7/PhysicalDimensions.php new file mode 100644 index 0000000..8cb0c13 --- /dev/null +++ b/src/Plugin/migrate/field/d7/PhysicalDimensions.php @@ -0,0 +1,20 @@ + 'physical_weight', + 'source' => $field_name, + ]; + $migration->mergeProcessOfProperty($field_name, $process); + } + + /** + * {@inheritdoc} + */ + public function processFieldValues(MigrationInterface $migration, $field_name, $data) { + $this->defineValueProcessPipeline($migration, $field_name, $data); + } + +}