function _batch_queue

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

Returns a queue object for a batch set.

Parameters

$batch_set: The batch set.

Return value

\Drupal\Core\Queue\QueueInterface|null The queue object.

Related topics

3 calls to _batch_queue()
_batch_finished in core/includes/batch.inc
Ends the batch processing.
_batch_populate_queue in core/includes/form.inc
Populates a job queue with the operations of a batch set.
_batch_process in core/includes/batch.inc
Processes sets in a batch.

File

core/includes/form.inc, line 1039

Code

function _batch_queue($batch_set) {
    static $queues;
    if (!isset($queues)) {
        $queues = [];
    }
    if (isset($batch_set['queue'])) {
        $name = $batch_set['queue']['name'];
        $class = $batch_set['queue']['class'];
        if (!isset($queues[$class][$name])) {
            $queues[$class][$name] = new $class($name, \Drupal::database());
        }
        return $queues[$class][$name];
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.