You are here

public function SqlContentEntityStorage::getDataTable 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::getDataTable()

Gets the data table name.

Return value

string|false The table name or FALSE if it is not available.

5 calls to SqlContentEntityStorage::getDataTable()
CommentStorage::getDisplayOrdinal in core/modules/comment/src/CommentStorage.php
Gets the display ordinal or page number for a comment.
CommentStorage::getNewCommentPageNumber in core/modules/comment/src/CommentStorage.php
Calculates the page number for the first new comment.
CommentStorage::loadThread in core/modules/comment/src/CommentStorage.php
To display threaded comments in the correct order we keep a 'thread' field and order by that value. This field keeps this data in a way which is easy to update and convenient to use.
TermStorage::getNodeTerms in core/modules/taxonomy/src/TermStorage.php
Returns all terms used to tag some given nodes.
TermStorage::loadTree in core/modules/taxonomy/src/TermStorage.php
Finds all terms in a given vocabulary ID.

File

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

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

public function getDataTable() {
  return $this->dataTable;
}