function _batch_test_batch_2

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

Batch 2: single multistep operation.

Operations: op 2 from 1 to 10.

3 calls to _batch_test_batch_2()
batch_test_chained_form_submit_2 in modules/simpletest/tests/batch_test.module
Submit handler #2 for the chained form.
batch_test_multistep_form_submit in modules/simpletest/tests/batch_test.module
Submit handler for the multistep form.
_batch_test_nested_batch_callback in modules/simpletest/tests/batch_test.callbacks.inc
Implements callback_batch_operation().

File

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

Code

function _batch_test_batch_2() {
    // Ensure the batch takes at least two iterations.
    $total = 10;
    $sleep = 1000000 / $total * 2;
    $operations = array(
        array(
            '_batch_test_callback_2',
            array(
                1,
                $total,
                $sleep,
            ),
        ),
    );
    $batch = array(
        'operations' => $operations,
        'finished' => '_batch_test_finished_2',
        '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.