NodeStorage::countDefaultLanguageRevisions

public NodeStorage::countDefaultLanguageRevisions(NodeInterface $node)

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 {node_field_revision} WHERE nid = :nid AND default_langcode = 1', array(':nid' => $node->id()))->fetchField();
}
doc_Drupal
2016-10-29 09:31:18
Comments
Leave a Comment

Please login to continue.