&_batch_current_set()
Returns the batch set being currently processed.
File
- core/includes/batch.inc, line 363
- Batch processing API for processes to run in multiple HTTP requests.
Code
1 2 3 4 | function &_batch_current_set() { $batch = &batch_get(); return $batch [ 'sets' ][ $batch [ 'current_set' ]]; } |
Please login to continue.