ParagraphsFieldSettings.php

Namespace

Drupal\paragraphs\Plugin\migrate\process

File

paragraphs/src/Plugin/migrate/process/ParagraphsFieldSettings.php
View source
<?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;
  }

}

Classes

Namesort ascending Description
ParagraphsFieldSettings Configure field instance settings for paragraphs.