FieldCollectionFieldInstanceSettings.php

Namespace

Drupal\paragraphs\Plugin\migrate\process

File

paragraphs/src/Plugin/migrate/process/FieldCollectionFieldInstanceSettings.php
View source
<?php

namespace Drupal\paragraphs\Plugin\migrate\process;

use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\MigrateSkipRowException;
use Drupal\migrate\Row;
use Drupal\paragraphs\Plugin\migrate\field\FieldCollection;

/**
 * Configure field instance settings for field collections.
 *
 * @MigrateProcessPlugin(
 *   id = "field_collection_field_instance_settings"
 * )
 */
class FieldCollectionFieldInstanceSettings extends ProcessPluginBase {

  /**
   * {@inheritdoc}
   */
  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $type = $row
      ->getSourceProperty('type');
    if ($type == 'field_collection') {
      $bundles = $this->entityTypeBundleInfo
        ->getBundleInfo('paragraph');
      $target_bundle = $row
        ->getSourceProperty('field_name') ?? '';

      // Remove field_ prefix for new bundle.
      $target_bundle = substr($target_bundle, FieldCollection::FIELD_COLLECTION_PREFIX_LENGTH);
      if (!isset($bundles[$target_bundle])) {
        throw new MigrateSkipRowException('No target paragraph bundle found for field_collection');
      }

      // Enable only this paragraph type for this field.
      $weight = 0;
      $value['handler_settings']['negate'] = 0;
      $value['handler_settings']['target_bundles'] = [
        $target_bundle => $target_bundle,
      ];
      $value['handler_settings']['target_bundles_drag_drop'][$target_bundle] = [
        'enabled' => TRUE,
        'weight' => ++$weight,
      ];
      unset($bundles[$target_bundle]);
      foreach ($bundles as $bundle_name => $bundle) {
        $value['handler_settings']['target_bundles_drag_drop'][$bundle_name] = [
          'enabled' => FALSE,
          'weight' => ++$weight,
        ];
        unset($bundles[$bundle_name]);
      }
    }
    return $value;
  }

}

Classes

Namesort descending Description
FieldCollectionFieldInstanceSettings Configure field instance settings for field collections.