public function EntityQueue::getQueueSettings in Entityqueue 8
Gets the queue settings.
Return value
array An array with the following keys:
- min_size: The minimum number of items that this queue can hold.
- max_size: The maximum number of items that this queue can hold.
- act_as_queue: The behavior of exceeding the maximum number of queue items.
- reverse: New items will be added to the top of the queue.
Overrides EntityQueueInterface::getQueueSettings
File
- src/
Entity/ EntityQueue.php, line 164
Class
- EntityQueue
- Defines the EntityQueue entity class.
Namespace
Drupal\entityqueue\EntityCode
public function getQueueSettings() {
return $this->queue_settings;
}