BatchTestMultiStepForm.php
Same filename in other branches
Namespace
Drupal\batch_test\FormFile
-
core/
modules/ system/ tests/ modules/ batch_test/ src/ Form/ BatchTestMultiStepForm.php
View source
<?php
declare (strict_types=1);
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
Title | Deprecated | Summary |
---|---|---|
BatchTestMultiStepForm | Generate form of id batch_test_multistep_form. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.