function ForumIndexStorage::deleteIndex

Same name and namespace in other branches
  1. 9 core/modules/forum/src/ForumIndexStorage.php \Drupal\forum\ForumIndexStorage::deleteIndex()
  2. 8.9.x core/modules/forum/src/ForumIndexStorage.php \Drupal\forum\ForumIndexStorage::deleteIndex()
  3. 10 core/modules/forum/src/ForumIndexStorage.php \Drupal\forum\ForumIndexStorage::deleteIndex()

File

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

Class

ForumIndexStorage
Handles CRUD operations to {forum_index} table.

Namespace

Drupal\forum

Code

public function deleteIndex(NodeInterface $node) {
    $this->database
        ->delete('forum_index')
        ->condition('nid', $node->id())
        ->execute();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.