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/includes/batch.inc
Ends the batch processing.
_batch_populate_queue in drupal/includes/form.inc
Populates a job queue with the operations of a batch set.
_batch_process in drupal/includes/batch.inc
Processes sets in a batch.

File

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

Code

function _batch_queue($batch_set) {
  static $queues;

  // The class autoloader is not available when running update.php, so make
  // sure the files are manually included.
  if (!isset($queues)) {
    $queues = array();
    require_once DRUPAL_ROOT . '/modules/system/system.queue.inc';
    require_once DRUPAL_ROOT . '/includes/batch.queue.inc';
  }
  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];
  }
}