You are here

ImportConfigForm.php in GatherContent 8.4

Same filename and directory in other branches
  1. 8.5 src/Form/ImportConfigForm.php
  2. 8.3 src/Form/ImportConfigForm.php

File

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

namespace Drupal\gathercontent\Form;

use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\gathercontent\Import\NodeUpdateMethod;

/**
 * Class ImportConfigForm.
 *
 * @package Drupal\gathercontent\Form
 */
class ImportConfigForm extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'gathercontent.import',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'gathercontent_import_config_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('gathercontent.import');
    $form['node_default_status'] = [
      '#type' => 'radios',
      '#required' => TRUE,
      '#title' => $this
        ->t('Node default status'),
      '#default_value' => $config
        ->get('node_default_status'),
      '#options' => [
        0 => $this
          ->t('Unpublished'),
        1 => $this
          ->t('Published'),
      ],
    ];
    $form['node_update_method'] = [
      '#type' => 'radios',
      '#required' => TRUE,
      '#title' => $this
        ->t('Content update method'),
      '#default_value' => $config
        ->get('node_update_method'),
      '#options' => [
        NodeUpdateMethod::ALWAYS_CREATE => $this
          ->t('Always create new Content'),
        NodeUpdateMethod::UPDATE_IF_NOT_CHANGED => $this
          ->t('Create new Content if it has changed since the last import'),
        NodeUpdateMethod::ALWAYS_UPDATE => $this
          ->t('Always update existing Content'),
      ],
    ];
    $form['node_create_new_revision'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Create new revision'),
      '#default_value' => $config
        ->get('node_create_new_revision'),
      '#description' => $this
        ->t('If the "Content update method" is any other than "Always update existing Content" then this setting won\'t take effect, because the entity will always be new.'),
    ];
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this
      ->config('gathercontent.import')
      ->set('node_default_status', $form_state
      ->getValue('node_default_status'))
      ->set('node_update_method', $form_state
      ->getValue('node_update_method'))
      ->set('node_create_new_revision', $form_state
      ->getValue('node_create_new_revision'))
      ->save();
    parent::submitForm($form, $form_state);
  }

}

Classes

Namesort descending Description
ImportConfigForm Class ImportConfigForm.