function batch_test_nested_drupal_form_submit

Menu callback: Submits a form within a batch programmatically.

1 string reference to 'batch_test_nested_drupal_form_submit'
batch_test_menu in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Implements hook_menu().

File

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

Code

function batch_test_nested_drupal_form_submit($value = 1) {

  // Set the batch and process it.
  $batch['operations'] = array(
    array(
      '_batch_test_nested_drupal_form_submit_callback',
      array(
        $value,
      ),
    ),
  );
  batch_set($batch);
  batch_process('batch-test/redirect');
}