function _batch_test_batch_2

Batch 2: single multistep operation.

Operations: op 2 from 1 to 10.

3 calls to _batch_test_batch_2()
batch_test_chained_form_submit_2 in drupal/modules/simpletest/tests/batch_test.module
Submit handler #2 for the chained form.
batch_test_multistep_form_submit in drupal/modules/simpletest/tests/batch_test.module
Submit handler for the multistep form.
_batch_test_nested_batch_callback in drupal/modules/simpletest/tests/batch_test.callbacks.inc
Implements callback_batch_operation().

File

drupal/modules/simpletest/tests/batch_test.module, line 375
Helper module for the Batch API tests.

Code

function _batch_test_batch_2() {

  // Ensure the batch takes at least two iterations.
  $total = 10;
  $sleep = 1000000 / $total * 2;
  $operations = array(
    array(
      '_batch_test_callback_2',
      array(
        1,
        $total,
        $sleep,
      ),
    ),
  );
  $batch = array(
    'operations' => $operations,
    'finished' => '_batch_test_finished_2',
    'file' => drupal_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
  );
  return $batch;
}