public function SqlContentEntityStorage::getDataTable in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getDataTable()
- 9 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.
12 calls to SqlContentEntityStorage::getDataTable()
- CommentStorage::getChildCids in core/
modules/ comment/ src/ CommentStorage.php - Gets the comment ids of the passed comment entities' children.
- CommentStorage::getDisplayOrdinal in core/
modules/ comment/ src/ CommentStorage.php - Gets the display ordinal or page number for a comment.
- CommentStorage::getMaxThread in core/
modules/ comment/ src/ CommentStorage.php - Gets the maximum encoded thread value for the top level comments.
- CommentStorage::getMaxThreadPerThread in core/
modules/ comment/ src/ CommentStorage.php - Gets the maximum encoded thread value for the children of this comment.
- CommentStorage::getNewCommentPageNumber in core/
modules/ comment/ src/ CommentStorage.php - Calculates the page number for the first new comment.
File
- core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php, line 247
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\SqlCode
public function getDataTable() {
return $this->dataTable;
}