public function SystemSetQueue::deleteQueue in Queue Unique 7.2
Same name and namespace in other branches
- 7 src/Queue/SystemSetQueue.php \Drupal\queue_unique\Queue\SystemSetQueue::deleteQueue()
File
- src/
Queue/ SystemSetQueue.php, line 129 - Contains \Drupal\queue_unique\Queue\SystemSetQueue
Class
Namespace
Drupal\queue_unique\QueueCode
public function deleteQueue() {
db_delete(static::TABLE_NAME)
->condition('name', $this->name)
->execute();
}