You are here

BatchTestSimpleForm.php in Zircon Profile 8

File

core/modules/system/tests/modules/batch_test/src/Form/BatchTestSimpleForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\batch_test\Form\BatchTestSimpleForm.
 */
namespace Drupal\batch_test\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Generate form of id batch_test_simple_form.
 */
class BatchTestSimpleForm extends FormBase {

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['batch'] = array(
      '#type' => 'select',
      '#title' => 'Choose batch',
      '#options' => array(
        'batch_0' => 'batch 0',
        'batch_1' => 'batch 1',
        'batch_2' => 'batch 2',
        'batch_3' => 'batch 3',
        'batch_4' => 'batch 4',
      ),
    );
    $form['submit'] = array(
      '#type' => 'submit',
      '#value' => 'Submit',
    );
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    batch_test_stack(NULL, TRUE);
    $function = '_batch_test_' . $form_state
      ->getValue('batch');
    batch_set($function());
    $form_state
      ->setRedirect('batch_test.redirect');
  }

}

Classes

Namesort descending Description
BatchTestSimpleForm Generate form of id batch_test_simple_form.