View source  
  <?php
namespace Drupal\field_tools\Form;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\field_tools\FieldCloner;
use Symfony\Component\DependencyInjection\ContainerInterface;
class FieldBulkCloneForm extends FormBase {
  use BundleDestinationOptionsTrait;
  
  protected $entityTypeManager;
  
  protected $entityTypeBundleInfo;
  
  protected $fieldCloner;
  
  public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, FieldCloner $field_cloner) {
    $this->entityTypeManager = $entity_type_manager;
    $this->entityTypeBundleInfo = $entity_type_bundle_info;
    $this->fieldCloner = $field_cloner;
  }
  
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('entity_type.bundle.info'), $container
      ->get('field_tools.field_cloner'));
  }
  
  public function getFormId() {
    return 'field_tools_field_clone_form';
  }
  
  public function buildForm(array $form, FormStateInterface $form_state, $entity_type_id = NULL, $bundle = NULL) {
    $field_ids = $this->entityTypeManager
      ->getStorage('field_config')
      ->getQuery()
      ->condition('entity_type', $entity_type_id)
      ->condition('bundle', $bundle)
      ->execute();
    $current_bundle_fields = $this->entityTypeManager
      ->getStorage('field_config')
      ->loadMultiple($field_ids);
    $field_options = array();
    foreach ($current_bundle_fields as $field_id => $field) {
      $field_options[$field_id] = $this
        ->t("@field-label (machine name: @field-name)", array(
        '@field-label' => $field
          ->getLabel(),
        '@field-name' => $field
          ->getName(),
      ));
    }
    asort($field_options);
    $form['fields'] = array(
      '#title' => $this
        ->t('Fields to clone'),
      '#type' => 'checkboxes',
      '#options' => $field_options,
      '#description' => $this
        ->t("Select fields to clone onto one or more bundles."),
    );
    $form['destinations'] = [
      '#type' => 'checkboxes',
      '#title' => $this
        ->t("Bundles to clone the fields to"),
      '#options' => $this
        ->getDestinationOptions($this->entityTypeManager, $this->entityTypeBundleInfo),
    ];
    
    $form['destinations']["{$entity_type_id}::{$bundle}"]['#disabled'] = TRUE;
    $form['destinations']["{$entity_type_id}::{$bundle}"]['#description'] = $this
      ->t("This is the current bundle.");
    $form['submit'] = array(
      '#type' => 'submit',
      '#value' => $this
        ->t('Clone fields'),
    );
    return $form;
  }
  
  public function submitForm(array &$form, FormStateInterface $form_state) {
    
    $build_info = $form_state
      ->getBuildInfo();
    list($entity_type_id, $bundle) = $build_info['args'];
    $destinations = array_filter($form_state
      ->getValue('destinations'));
    $fields_to_clone = array_filter($form_state
      ->getValue('fields'));
    foreach ($destinations as $destination) {
      list($destination_entity_type, $destination_bundle) = explode('::', $destination);
      foreach ($fields_to_clone as $field_id) {
        $field_config = $this->entityTypeManager
          ->getStorage('field_config')
          ->load($field_id);
        
        $field_ids = $this->entityTypeManager
          ->getStorage('field_config')
          ->getQuery()
          ->condition('entity_type', $destination_entity_type)
          ->condition('bundle', $destination_bundle)
          ->condition('field_name', $field_config
          ->getName())
          ->execute();
        if ($field_ids) {
          $this
            ->messenger()
            ->addMessage($this
            ->t("Field @name is already on @entity_type @bundle, skipping.", [
            '@name' => $field_config
              ->getName(),
            
            '@entity_type' => $destination_entity_type,
            '@bundle' => $destination_bundle,
          ]));
          continue;
        }
        
        $existing_destination_field_storage_ids = $this->entityTypeManager
          ->getStorage('field_storage_config')
          ->getQuery()
          ->condition('entity_type', $destination_entity_type)
          ->condition('field_name', $field_config
          ->getName())
          ->execute();
        if ($existing_destination_field_storage_ids) {
          
          $existing_field_storage_config = $this->entityTypeManager
            ->getStorage('field_storage_config')
            ->load(reset($existing_destination_field_storage_ids));
          if ($existing_field_storage_config
            ->getType() != $field_config
            ->getType()) {
            $this
              ->messenger()
              ->addMessage($this
              ->t("Field @name is already on @entity_type with a different field type, skipping.", [
              '@name' => $field_config
                ->getName(),
              
              '@entity_type' => $destination_entity_type,
            ]));
            continue;
          }
        }
        $this->fieldCloner
          ->cloneField($field_config, $destination_entity_type, $destination_bundle);
      }
    }
    $this
      ->messenger()
      ->addMessage($this
      ->t("The fields have been cloned."));
  }
}