Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getBaseTable()
  2. 9 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.

2 calls to SqlContentEntityStorage::getBaseTable()
NodeStorage::updateType in core/modules/node/src/NodeStorage.php
Updates all nodes of one type to be of another type.
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 228

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

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