Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/batch_test/src/Form/BatchTestMultiStepForm.php
  2. 9 core/modules/system/tests/modules/batch_test/src/Form/BatchTestMultiStepForm.php

Namespace

Drupal\batch_test\Form

File

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

namespace Drupal\batch_test\Form;

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

/**
 * Generate form of id batch_test_multistep_form.
 *
 * @internal
 */
class BatchTestMultiStepForm extends FormBase {

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $step = $form_state
      ->get('step');
    if (empty($step)) {
      $step = 1;
      $form_state
        ->set('step', $step);
    }
    $form['step_display'] = [
      '#markup' => 'step ' . $step . '<br/>',
    ];
    $form['submit'] = [
      '#type' => 'submit',
      '#value' => 'Submit',
    ];

    // This is a POST form with multiple steps that does not transition from one
    // step to the next via POST requests, but via GET requests, because it uses
    // Batch API to advance through the steps.
    $form['#cache']['max-age'] = 0;
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    batch_test_stack(NULL, TRUE);
    $step = $form_state
      ->get('step');
    switch ($step) {
      case 1:
        batch_set(_batch_test_batch_1());
        break;
      case 2:
        batch_set(_batch_test_batch_2());
        break;
    }
    if ($step < 2) {
      $form_state
        ->set('step', ++$step);
      $form_state
        ->setRebuild();
    }
    $form_state
      ->setRedirect('batch_test.redirect');
  }

}

Classes

Namesort descending Description
BatchTestMultiStepForm Generate form of id batch_test_multistep_form.