You are here

function _batch_test_batch_2 in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_2()
  2. 7 modules/simpletest/tests/batch_test.module \_batch_test_batch_2()

Batch 2: Performs a single multistep operation.

Operations: op 2 from 1 to 10.

2 calls to _batch_test_batch_2()
BatchTestChainedForm::batchTestChainedFormSubmit2 in core/modules/system/tests/modules/batch_test/src/Form/BatchTestChainedForm.php
Form submission handler #2 for batch_test_chained_form.
BatchTestMultiStepForm::submitForm in core/modules/system/tests/modules/batch_test/src/Form/BatchTestMultiStepForm.php
Form submission handler.

File

core/modules/system/tests/modules/batch_test/batch_test.module, line 56
Helper module for the Batch API tests.

Code

function _batch_test_batch_2() {

  // 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')
    ->addOperation('_batch_test_callback_2', [
    1,
    $total,
    $sleep,
  ])
    ->setFinishCallback('_batch_test_finished_2');
  return $batch_builder
    ->toArray() + [
    'batch_test_id' => 'batch_2',
  ];
}