1 batch.queue.inc | public BatchQueue::getAllItems() |
Retrieves all remaining items in the queue.
This is specific to Batch API and is not part of the BackdropQueueInterface.
File
- core/
includes/ batch.queue.inc, line 41 - 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;
}