function ForumIndexStorage::deleteRevision

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

Overrides ForumIndexStorageInterface::deleteRevision

File

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

Class

ForumIndexStorage
Handles CRUD operations to {forum_index} table.

Namespace

Drupal\forum

Code

public function deleteRevision(NodeInterface $node) {
    $this->database
        ->delete('forum')
        ->condition('nid', $node->id())
        ->condition('vid', $node->getRevisionId())
        ->execute();
}

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