public function SystemSetQueue::numberOfItems in Queue Unique 7
Same name and namespace in other branches
- 7.2 src/Queue/SystemSetQueue.php \Drupal\queue_unique\Queue\SystemSetQueue::numberOfItems()
 
File
- src/
Queue/ SystemSetQueue.php, line 53  - Contains \Drupal\queue_unique\Queue\SystemSetQueue
 
Class
Namespace
Drupal\queue_unique\QueueCode
public function numberOfItems() {
  return db_query('SELECT COUNT(item_id) FROM {' . static::TABLE_NAME . '} WHERE name = :name', array(
    ':name' => $this->name,
  ))
    ->fetchField();
}