function _batch_queue

Returns a queue object for a batch set.

Parameters

$batch_set: The batch set.

Return value

The queue object.

Related topics

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

File

drupal/core/includes/form.inc, line 5031
Functions for form and batch generation and processing.

Code

function _batch_queue($batch_set) {
  static $queues;
  if (!isset($queues)) {
    $queues = array();
  }
  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);
    }
    return $queues[$class][$name];
  }
}