1 batch_test.module _batch_test_batch_5()

Batch 5: repeats a simple operation.

Operations: op 1 from 1 to 10.

File

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

Code

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

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