public function BatchMemoryQueue::getAllItems

Retrieves all remaining items in the queue.

This is specific to Batch API and is not part of the DrupalQueueInterface.

File

drupal/includes/batch.queue.inc, line 77
Queue handlers used by the Batch API.

Class

BatchMemoryQueue
Defines a batch queue for non-progressive batches.

Code

public function getAllItems() {
  $result = array();
  foreach ($this->queue as $item) {
    $result[] = $item->data;
  }
  return $result;
}