function _batch_test_batch_1
7.x batch_test.module | _batch_test_batch_1() |
Batch 1: repeats a simple operation.
Operations: op 1 from 1 to 10.
3 calls to _batch_test_batch_1()
- batch_test_chained_form_submit_1 in drupal-7.x/
modules/ simpletest/ tests/ batch_test.module - Submit handler #1 for the chained form.
- batch_test_multistep_form_submit in drupal-7.x/
modules/ simpletest/ tests/ batch_test.module - Submit handler for the multistep form.
- batch_test_no_form in drupal-7.x/
modules/ simpletest/ tests/ batch_test.module - Menu callback: fire a batch process without a form submission.
File
- drupal-7.x/
modules/ simpletest/ tests/ batch_test.module, line 353 - Helper module for the Batch API tests.
Code
function _batch_test_batch_1() {
// 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_1', array($i, $sleep));
}
$batch = array(
'operations' => $operations,
'finished' => '_batch_test_finished_1',
'file' => drupal_get_path('module', 'batch_test') . '/batch_test.callbacks.inc',
);
return $batch;
}