You are here

public function SqlContentEntityStorage::getBaseTable in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getBaseTable()
  2. 10 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getBaseTable()

Gets the base table name.

Return value

string The table name.

1 call to SqlContentEntityStorage::getBaseTable()
TermStorage::nodeCount in core/modules/taxonomy/src/TermStorage.php
Count the number of nodes in a given vocabulary ID.

File

core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 227

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

public function getBaseTable() {
  return $this->baseTable;
}