function _batch_test_batch_5

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

Batch 5: Repeats a simple operation.

Operations: op 1 from 1 to 10.

1 call to _batch_test_batch_5()
BatchTestController::testLargePercentage in core/modules/system/tests/modules/batch_test/src/Controller/BatchTestController.php
Fires a batch process without a form submission.

File

core/modules/system/tests/modules/batch_test/batch_test.module, line 130

Code

function _batch_test_batch_5() {
    // Ensure the batch takes at least two iterations.
    $total = 10;
    $sleep = 1000000 / $total * 2;
    $batch_builder = (new BatchBuilder())->setFile(\Drupal::service('extension.list.module')->getPath('batch_test') . '/batch_test.callbacks.inc')
        ->setFinishCallback('_batch_test_finished_5');
    for ($i = 1; $i <= $total; $i++) {
        $batch_builder->addOperation('_batch_test_callback_5', [
            $i,
            $sleep,
        ]);
    }
    return $batch_builder->toArray() + [
        'batch_test_id' => 'batch_5',
    ];
}

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