You are here

FeedImporterFormBase.php in Feed Import 8

File

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

namespace Drupal\feed_import\Form;

use Drupal\Core\Entity\EntityForm;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Form for adding a feed importer.
 */
class FeedImporterFormBase extends EntityForm {

  /**
   * The image style entity storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $feedImporterStorage;

  /**
   * Constructs a base class for image style add and edit forms.
   *
   * @param \Drupal\Core\Entity\EntityStorageInterface $image_style_storage
   *   The image style entity storage.
   */
  public function __construct(EntityStorageInterface $feed_importer_storage) {
    $this->feedImporterStorage = $feed_importer_storage;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity.manager')
      ->getStorage('feed_importer'));
  }

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $form['label'] = array(
      '#type' => 'textfield',
      '#title' => $this
        ->t('Feed Importer name'),
      '#default_value' => $this->entity
        ->label(),
      '#required' => TRUE,
    );
    $form['id'] = array(
      '#type' => 'machine_name',
      '#machine_name' => array(
        'exists' => array(
          $this->feedImporterStorage,
          'load',
        ),
      ),
      '#default_value' => $this->entity
        ->id(),
      '#required' => TRUE,
    );
    return parent::form($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    parent::save($form, $form_state);
    $form_state
      ->setRedirectUrl($this->entity
      ->urlInfo('edit-form'));
  }

}

Classes

Namesort descending Description
FeedImporterFormBase Form for adding a feed importer.