You are here

public function ForumIndexStorage::create in Drupal 10

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

File

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

Class

ForumIndexStorage
Handles CRUD operations to {forum_index} table.

Namespace

Drupal\forum

Code

public function create(NodeInterface $node) {
  $this->database
    ->insert('forum')
    ->fields([
    'tid' => $node->forum_tid,
    'vid' => $node
      ->getRevisionId(),
    'nid' => $node
      ->id(),
  ])
    ->execute();
}