function _batch_test_batch_4

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

Batch 4: batch within a batch.

Operations:

  • op 1 from 1 to 5,
  • set batch 2 (op 2 from 1 to 10, should run at the end)
  • op 1 from 6 to 10,

File

modules/simpletest/tests/batch_test.module, line 430

Code

function _batch_test_batch_4() {
  // Ensure the batch takes at least two iterations.
  $total = 10;
  $sleep = 1000000 / $total * 2;
  $operations = array();
  for ($i = 1; $i <= round($total / 2); $i++) {
    $operations[] = array(
      '_batch_test_callback_1',
      array(
        $i,
        $sleep,
      ),
    );
  }
  $operations[] = array(
    '_batch_test_nested_batch_callback',
    array(),
  );
  for ($i = round($total / 2) + 1; $i <= $total; $i++) {
    $operations[] = array(
      '_batch_test_callback_1',
      array(
        $i,
        $sleep,
      ),
    );
  }
  $batch = array(
    'operations' => $operations,
    'finished' => '_batch_test_finished_4',
    'file' => drupal_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
  );
  return $batch;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.