function 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\nodeCode
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();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.