function _batch_test_batch_1
Same name in other branches
- 7.x modules/simpletest/tests/batch_test.module \_batch_test_batch_1()
- 9 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_1()
- 10 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_1()
- 11.x core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_batch_1()
Batch 1: Repeats a simple operation.
Operations: op 1 from 1 to 10.
4 calls to _batch_test_batch_1()
- BatchTestChainedForm::batchTestChainedFormSubmit1 in core/
modules/ system/ tests/ modules/ batch_test/ src/ Form/ BatchTestChainedForm.php - Form submission handler #1 for batch_test_chained_form
- BatchTestController::testFinishRedirect in core/
modules/ system/ tests/ modules/ batch_test/ src/ Controller/ BatchTestController.php - Fires a batch process without a form submission and a finish redirect.
- BatchTestController::testNoForm in core/
modules/ system/ tests/ modules/ batch_test/ src/ Controller/ BatchTestController.php - Fires a batch process without a form submission.
- 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 37
Code
function _batch_test_batch_1() {
// 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_1',
[
$i,
$sleep,
],
];
}
$batch = [
'operations' => $operations,
'finished' => '_batch_test_finished_1',
'file' => drupal_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
'batch_test_id' => 'batch_1',
];
return $batch;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.