function batch_test_simple_form_submit

Submit handler for the simple form.

Archivo

drupal-7.x/modules/simpletest/tests/batch_test.module, line 121
Helper module for the Batch API tests.

Código

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';
}