function batch_test_simple_form_submit

Form submission handler for batch_test_simple_form().

See also

batch_test_simple_form()

File

drupal/core/modules/system/tests/modules/batch_test/batch_test.module, line 125
Helper module for the Batch API tests.

Code

function batch_test_simple_form_submit($form, &$form_state) {
  batch_test_stack(NULL, TRUE);
  $function = '_batch_test_' . $form_state['values']['batch'];
  batch_set($function());
  $form_state['redirect'] = 'batch-test/redirect';
}