You are here

public function TermStorageInterface::nodeCount in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/src/TermStorageInterface.php \Drupal\taxonomy\TermStorageInterface::nodeCount()
  2. 10 core/modules/taxonomy/src/TermStorageInterface.php \Drupal\taxonomy\TermStorageInterface::nodeCount()

Count the number of nodes in a given vocabulary ID.

Parameters

string $vid: Vocabulary ID to retrieve terms for.

Return value

int A count of the nodes in a given vocabulary ID.

1 method overrides TermStorageInterface::nodeCount()
TermStorage::nodeCount in core/modules/taxonomy/src/TermStorage.php
Count the number of nodes in a given vocabulary ID.

File

core/modules/taxonomy/src/TermStorageInterface.php, line 103

Class

TermStorageInterface
Defines an interface for taxonomy_term entity storage classes.

Namespace

Drupal\taxonomy

Code

public function nodeCount($vid);