You are here

public function QueueUISystemQueue::getOperations in Queue UI 7.2

SystemQueue implements all default QueueUI methods.

Return value

array An array of available QueueUI methods. Array key is system name of the operation, array key value is the display name.

Overrides QueueUIInterface::getOperations

1 call to QueueUISystemQueue::getOperations()
QueueUISystemQueue::inspect in lib/QueueUISystemQueue.php
View the queue items in a queue and expose additional methods for inspection.

File

lib/QueueUISystemQueue.php, line 18

Class

QueueUISystemQueue

Code

public function getOperations() {
  return array(
    'view' => t('View'),
    'release' => t('Release'),
    'delete' => t('Delete'),
  );
}