Same name and namespace in other branches
  1. 10 core/includes/batch.inc \_batch_current_set()
  2. 7.x includes/batch.inc \_batch_current_set()
  3. 8.9.x core/includes/batch.inc \_batch_current_set()
  4. 9 core/includes/batch.inc \_batch_current_set()

Retrieve the batch set being currently processed.

4 calls to _batch_current_set()
_batch_next_set in includes/batch.inc
Move execution to the next batch set if any, executing the stored form _submit handlers along the way (thus possibly inserting additional batch sets).
_batch_process in includes/batch.inc
Advance batch processing for 1 second (or process the whole batch if it was not set for progressive execution - e.g forms submitted by drupal_execute).
_batch_progress_page_js in includes/batch.inc
Batch processing page with JavaScript support.
_batch_progress_page_nojs in includes/batch.inc
Batch processing page without JavaScript support.

File

includes/batch.inc, line 261
Batch processing API for processes to run in multiple HTTP requests.

Code

function &_batch_current_set() {
  $batch =& batch_get();
  return $batch['sets'][$batch['current_set']];
}