batch_example_simple_form_submit

6 batch_example.module batch_example_simple_form_submit($form, &$form_state)
7 batch_example.module batch_example_simple_form_submit($form, &$form_state)
8 batch_example.module batch_example_simple_form_submit($form, &$form_state)

Related topics

File

batch_example/batch_example.module, line 91
This is an example outlining how a module can define batches.

Code

function batch_example_simple_form_submit($form, &$form_state) {
  $values = &$form_state['values'];

  $function = 'batch_example_' . $values['batch'];
  $batch = $function();
  batch_set($batch);

  // Redirection takes place as usual.
  $form_state['redirect'] = 'batch_example/example_2';
}
Login or register to post comments