Same name and namespace in other branches
  1. 10 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_2()
  2. 8.9.x core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_2()
  3. 9 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_2()

Batch 2: single multistep operation.

Operations: op 2 from 1 to 10.

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

File

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;
}