1.20.x batch_test.module _batch_test_batch_3()

Batch 3: both single and multistep operations.

Operations:

  • op 1 from 1 to 5,
  • op 2 from 1 to 5,
  • op 1 from 6 to 10,
  • op 2 from 6 to 10.

File

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

Code

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

  $operations = array();
  for ($i = 1; $i <= round($total / 2); $i++) {
    $operations[] = array('_batch_test_callback_1', array($i, $sleep));
  }
  $operations[] = array('_batch_test_callback_2', array(1, $total / 2, $sleep));
  for ($i = round($total / 2) + 1; $i <= $total; $i++) {
    $operations[] = array('_batch_test_callback_1', array($i, $sleep));
  }
  $operations[] = array('_batch_test_callback_2', array(6, $total / 2, $sleep));
  $batch = array(
    'operations' => $operations,
    'finished' => '_batch_test_finished_3',
    'file' => backdrop_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
  );
  return $batch;
}