public function SystemSetQueue::deleteQueue in Queue Unique 7
Same name and namespace in other branches
- 7.2 src/Queue/SystemSetQueue.php \Drupal\queue_unique\Queue\SystemSetQueue::deleteQueue()
File
- src/
Queue/ SystemSetQueue.php, line 126 - 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();
}