public function BatchQueue::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 42
Queue handlers used by the Batch API.

Class

BatchQueue
Defines a batch queue.

Code

public function getAllItems() {
  $result = array();
  $items = db_query('SELECT data FROM {queue} q WHERE name = :name ORDER BY item_id ASC', array(
    ':name' => $this->name,
  ))
    ->fetchAll();
  foreach ($items as $item) {
    $result[] = unserialize($item->data);
  }
  return $result;
}