function _batch_test_batch_5
Same name in other branches
- 9 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_5()
- 8.9.x core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_5()
- 10 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_5()
- 11.x 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()
- batch_test_large_percentage in modules/
simpletest/ tests/ batch_test.module - Menu callback: fire a batch process without a form submission.
File
-
modules/
simpletest/ tests/ batch_test.module, line 456
Code
function _batch_test_batch_5() {
// Ensure the batch takes at least two iterations.
$total = 10;
$sleep = 1000000 / $total * 2;
$operations = array();
for ($i = 1; $i <= $total; $i++) {
$operations[] = array(
'_batch_test_callback_5',
array(
$i,
$sleep,
),
);
}
$batch = array(
'operations' => $operations,
'finished' => '_batch_test_finished_5',
'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.