function _batch_test_batch_2

Batch 2: Performs a 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/core/modules/system/tests/modules/batch_test/batch_test.module
Form submission handler #2 for batch_test_chained_form().
batch_test_multistep_form_submit in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Form submission handler for batch_test_multistep_form().
_batch_test_nested_batch_callback in drupal/core/modules/system/tests/modules/batch_test/batch_test.callbacks.inc
Performs a batch operation setting up its own batch.

File

drupal/core/modules/system/tests/modules/batch_test/batch_test.module, line 400
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;
}