1.20.x batch_test.module _batch_test_batch_2()

Batch 2: single multistep operation.

Operations: op 2 from 1 to 10.

File

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

Code

function _batch_test_batch_2() {
  // Ensure the batch takes at least two iterations.
  $total = 10;
  $sleep = 200000;

  $operations = array(
    array('_batch_test_callback_2', array(1, $total, $sleep)),
  );
  $batch = array(
    'operations' => $operations,
    'finished' => '_batch_test_finished_2',
    'file' => backdrop_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
  );
  return $batch;
}