1 batch_test.module batch_test_chained_form_submit_3($form, &$form_state)

Submit handler #3 for the chained form.

File

core/modules/simpletest/tests/batch_test.module, line 234
Helper module for the Batch API tests.

Code

function batch_test_chained_form_submit_3($form, &$form_state) {
  batch_test_stack('submit handler 3');
  batch_test_stack('value = ' . $form_state['values']['value']);

  $form_state['values']['counter']++;
  $form_state['values']['value'] = $form_state['values']['original'] . '-' . $form_state['values']['counter'];

  // This redirect should not be taken into account.
  $form_state['redirect'] = 'should/be/discarded';
}