<?php namespace Drupal\paragraphs\Plugin\migrate\process; use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\Row; /** * Configure field instance settings for paragraphs. * * @MigrateProcessPlugin( * id = "paragraphs_field_settings" * ) */ class ParagraphsFieldSettings extends ProcessPluginBase { /** * {@inheritdoc} */ public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { if ($row->getSourceProperty('type') == 'paragraphs') { $value['target_type'] = 'paragraph'; } return $value; } }