function BatchTestDefinitions::batch5
Batch 5: Repeats a simple operation.
Operations: op 1 from 1 to 10.
File
-
core/
modules/ system/ tests/ modules/ batch_test/ src/ BatchTestDefinitions.php, line 121
Class
Namespace
Drupal\batch_testCode
public function batch5() : array {
$batch_test_callbacks = new BatchTestCallbacks();
// Ensure the batch takes at least two iterations.
$total = 10;
$sleep = 1000000 / $total * 2;
$batch_builder = (new BatchBuilder())->setFinishCallback([
$batch_test_callbacks,
'finished5',
]);
for ($i = 1; $i <= $total; $i++) {
$batch_builder->addOperation([
$batch_test_callbacks,
'callback5',
], [
$i,
$sleep,
]);
}
return $batch_builder->toArray() + [
'batch_test_id' => 'batch5',
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.