You are here

public static function BatchTestChainedForm::batchTestChainedFormSubmit1 in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/batch_test/src/Form/BatchTestChainedForm.php \Drupal\batch_test\Form\BatchTestChainedForm::batchTestChainedFormSubmit1()

Form submission handler #1 for batch_test_chained_form.

File

core/modules/system/tests/modules/batch_test/src/Form/BatchTestChainedForm.php, line 55

Class

BatchTestChainedForm
Generate form of id batch_test_chained_form.

Namespace

Drupal\batch_test\Form

Code

public static function batchTestChainedFormSubmit1($form, FormStateInterface $form_state) {
  batch_test_stack(NULL, TRUE);
  batch_test_stack('submit handler 1');
  batch_test_stack('value = ' . $form_state
    ->getValue('value'));
  $value =& $form_state
    ->getValue('value');
  $value++;
  batch_set(_batch_test_batch_1());
  $form_state
    ->setRedirect('batch_test.redirect');
}