You are here

QuickNodeCloneEntitySettingsForm.php in Quick Node Clone 8

File

src/Form/QuickNodeCloneEntitySettingsForm.php
View source
<?php

namespace Drupal\quick_node_clone\Form;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\field\Entity\FieldConfig;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Abstract class to configure how entities are cloned.
 *
 * @todo write the interface.
 */
abstract class QuickNodeCloneEntitySettingsForm extends ConfigFormBase implements QuickNodeCloneEntitySettingsFormInterface {

  /**
   * The Entity Field Manager.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * The Config Factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * The Entity Bundle Type Info.
   *
   * @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface
   */
  protected $entityTypeBundleInfo;

  /**
   * The machine name of the entity type.
   *
   * @var string
   *   The entity type i.e. node
   */
  protected $entityTypeId = '';

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('entity_field.manager'), $container
      ->get('entity_type.bundle.info'));
  }

  /**
   * {@inheritdoc}
   */
  public function setEntityType($entityTypeId) {
    $this->entityTypeId = $entityTypeId;
  }

  /**
   * {@inheritdoc}
   */
  public function getEntityTypeId() {
    return $this->entityTypeId;
  }

  /**
   * {@inheritdoc}
   */
  public function getEditableConfigNames() {
    return [
      'quick_node_clone.settings',
    ];
  }

  /**
   * QuickNodeCloneEntitySettingsForm constructor.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $configFactory
   *   The config factory.
   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager
   *   The entity field manager service.
   * @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $entityTypeBundleInfo
   *   The entity type bundle info provider.
   */
  public function __construct(ConfigFactoryInterface $configFactory, EntityFieldManagerInterface $entityFieldManager, EntityTypeBundleInfoInterface $entityTypeBundleInfo) {
    parent::__construct($configFactory);
    $this->configFactory = $configFactory;
    $this->entityFieldManager = $entityFieldManager;
    $this->entityTypeBundleInfo = $entityTypeBundleInfo;
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['exclude'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Exclusion list'),
    ];
    $form['exclude']['description'] = [
      '#markup' => $this
        ->t('You can select fields that you do not want to be included when the node is cloned.'),
    ];
    $config_name = 'exclude.' . $this
      ->getEntityTypeId();
    if (!is_null($this
      ->getSettings($config_name))) {
      $value = $this
        ->getSettings($config_name);
      if (empty($form_state
        ->getValue('bundle_names'))) {
        $form_state
          ->setValue('bundle_names', $value);
      }
    }
    $bundle_names = [];
    foreach ($this
      ->getEntityBundles() as $bundle => $item) {
      $bundle_names[$bundle] = $item['label'];
    }
    $form['exclude']['bundle_names'] = [
      '#type' => 'checkboxes',
      '#title' => $this
        ->t('Entity Types'),
      '#options' => $bundle_names,
      '#default_value' => array_keys($form_state
        ->getValue('bundle_names') ?: []),
      '#description' => $this
        ->t('Select entity types above and you will see a list of fields that can be excluded.'),
      '#ajax' => [
        'callback' => 'Drupal\\quick_node_clone\\Form\\QuickNodeCloneEntitySettingsForm::fieldsCallback',
        'wrapper' => 'fields-list-' . $this
          ->getEntityTypeId(),
        'method' => 'replace',
      ],
    ];
    $form['exclude']['fields'] = [
      '#type' => 'details',
      '#open' => TRUE,
      '#title' => $this
        ->t('Fields'),
      '#description' => $this
        ->getDescription($form_state),
      '#prefix' => '<div id="fields-list-' . $this
        ->getEntityTypeId() . '">',
      '#suffix' => '</div>',
    ];
    if ($selected_bundles = $this
      ->getSelectedBundles($form_state)) {
      $selected_bundles = $this
        ->getSelectedBundles($form_state);
      foreach ($bundle_names as $bundle_name => $bundle_label) {
        if (!empty($selected_bundles[$bundle_name])) {
          $options = [];
          $field_definitions = $this->entityFieldManager
            ->getFieldDefinitions($this
            ->getEntityTypeId(), $bundle_name);
          foreach ($field_definitions as $field) {
            if ($field instanceof FieldConfig) {
              $options[$field
                ->getName()] = $field
                ->getLabel();
            }
          }
          $form['exclude']['fields']['bundle_' . $bundle_name] = [
            '#type' => 'details',
            '#title' => $bundle_name,
            '#open' => TRUE,
          ];
          $form['exclude']['fields']['bundle_' . $bundle_name][$bundle_name] = [
            '#type' => 'checkboxes',
            '#title' => $this
              ->t('Fields for @bundle_name', [
              '@bundle_name' => $bundle_name,
            ]),
            '#default_value' => $this
              ->getDefaultFields($bundle_name),
            '#options' => $options,
          ];
        }
      }
    }
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->cleanValues();
    $form_values = $form_state
      ->getValues();

    // Build an array of excluded fields for each bundle.
    $bundle_names = [];
    foreach (array_filter($form_values['bundle_names']) as $type) {
      if (!empty(array_filter($form_values[$type]))) {
        $bundle_names[$type] = array_values(array_filter($form_values[$type]));
      }
    }

    // Save config.
    $this
      ->config('quick_node_clone.settings')
      ->set('exclude.' . $this
      ->getEntityTypeId(), $bundle_names)
      ->save();
  }

  /**
   * AJAX callback function to return the excluded fields part of the form.
   *
   * @param array $form
   *   The form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current form state.
   *
   * @return array
   *   The excluded fields form array.
   */
  public static function fieldsCallback(array $form, FormStateInterface $form_state) {
    return $form['exclude']['fields'];
  }

  /**
   * {@inheritdoc}
   */
  public function getEntityBundles() {
    static $bundles;
    if (!isset($bundles)) {
      $bundles = $this->entityTypeBundleInfo
        ->getBundleInfo($this
        ->getEntityTypeId());
    }
    return $bundles;
  }

  /**
   * {@inheritdoc}
   */
  public function getSelectedBundles(FormStateInterface $form_state) {
    $selected_types = NULL;
    $config_name = 'exclude.' . $this
      ->getEntityTypeId();
    if (!empty($form_state
      ->getValue('bundle_names'))) {
      $selected_types = $form_state
        ->getValue('bundle_names');
    }
    elseif (!empty($this
      ->getSettings($config_name)) && array_filter($this
      ->getSettings($config_name))) {
      $selected_types = $this
        ->getSettings($config_name);
    }
    return $selected_types;
  }

  /**
   * {@inheritdoc}
   */
  public function getDescription(FormStateInterface $form_state) {
    $desc = $this
      ->t('No content types selected');
    $config_name = 'exclude.' . $this
      ->getEntityTypeId();
    if (!empty($form_state
      ->getValue('bundle_names')) && array_filter($form_state
      ->getValue('bundle_names'))) {
      $desc = '';
    }
    elseif (!empty($this
      ->getSettings($config_name)) && array_filter($this
      ->getSettings($config_name))) {
      $desc = '';
    }
    return $desc;
  }

  /**
   * {@inheritdoc}
   */
  public function getDefaultFields($value) {
    $default_fields = [];
    $config_name = 'exclude.' . $this
      ->getEntityTypeId() . '.' . $value;
    if (!empty($this
      ->getSettings($config_name))) {
      $default_fields = $this
        ->getSettings($config_name);
    }
    return $default_fields;
  }

  /**
   * {@inheritdoc}
   */
  public function getSettings($value) {
    $settings = $this->configFactory
      ->get('quick_node_clone.settings')
      ->get($value);
    return $settings;
  }

}

Classes

Namesort descending Description
QuickNodeCloneEntitySettingsForm Abstract class to configure how entities are cloned.