function _batch_test_callback_1

Performs a simple batch operation.

3 string references to '_batch_test_callback_1'
_batch_test_batch_1 in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Batch 1: Repeats a simple operation.
_batch_test_batch_3 in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Batch 3: Performs both single and multistep operations.
_batch_test_batch_4 in drupal/core/modules/system/tests/modules/batch_test/batch_test.module
Batch 4: Performs a batch within a batch.

File

drupal/core/modules/system/tests/modules/batch_test/batch_test.callbacks.inc, line 11
Batch callbacks for the Batch API tests.

Code

function _batch_test_callback_1($id, $sleep, &$context) {

  // No-op, but ensure the batch take a couple iterations.
  // Batch needs time to run for the test, so sleep a bit.
  usleep($sleep);

  // Track execution, and store some result for post-processing in the
  // 'finished' callback.
  batch_test_stack("op 1 id {$id}");
  $context['results'][1][] = $id;
}