function _batch_test_batch_6

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

Batch 6: Repeats a simple operation.

Operations: op 6 from 1 to 10.

File

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

Code

function _batch_test_batch_6() {
    // Ensure the batch takes at least two iterations.
    $total = 10;
    $sleep = 1000000 / $total * 2;
    $operations = [];
    for ($i = 1; $i <= $total; $i++) {
        $operations[] = [
            '_batch_test_callback_6',
            [
                $i,
                $sleep,
            ],
        ];
    }
    $batch = [
        'operations' => $operations,
        'finished' => '_batch_test_finished_6',
        'file' => drupal_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
        'batch_test_id' => 'batch_6',
    ];
    return $batch;
}

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