public function SqlContentEntityStorage::getBaseTable in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getBaseTable()
- 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 249
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\SqlCode
public function getBaseTable() {
return $this->baseTable;
}