You are here

public function ForumIndexStorage::read in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/forum/src/ForumIndexStorage.php \Drupal\forum\ForumIndexStorage::read()
  2. 9 core/modules/forum/src/ForumIndexStorage.php \Drupal\forum\ForumIndexStorage::read()

File

core/modules/forum/src/ForumIndexStorage.php, line 54

Class

ForumIndexStorage
Handles CRUD operations to {forum_index} table.

Namespace

Drupal\forum

Code

public function read(array $vids) {
  return $this->database
    ->select('forum', 'f')
    ->fields('f', [
    'nid',
    'tid',
  ])
    ->condition('f.vid', $vids, 'IN')
    ->execute();
}