batch_example_simple_form_submit
Definition
batch_example_simple_form_submit($form, &$form_state)
developer/examples/batch_example.module, line 83
Code
<?php
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';
}
?> 