You are here

public function NodeStorage::countDefaultLanguageRevisions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/src/NodeStorage.php \Drupal\node\NodeStorage::countDefaultLanguageRevisions()

Counts the number of revisions in the default language.

Parameters

\Drupal\node\NodeInterface $node: The node entity.

Return value

int The number of revisions in the default language.

Overrides NodeStorageInterface::countDefaultLanguageRevisions

File

core/modules/node/src/NodeStorage.php, line 40

Class

NodeStorage
Defines the storage handler class for nodes.

Namespace

Drupal\node

Code

public function countDefaultLanguageRevisions(NodeInterface $node) {
  return $this->database
    ->query('SELECT COUNT(*) FROM {' . $this
    ->getRevisionDataTable() . '} WHERE nid = :nid AND default_langcode = 1', [
    ':nid' => $node
      ->id(),
  ])
    ->fetchField();
}