public function SqlContentEntityStorage::getRevisionTable in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getRevisionTable()
 - 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getRevisionTable()
 
Gets the revision table name.
Return value
string|false The table name or FALSE if it is not available.
4 calls to SqlContentEntityStorage::getRevisionTable()
- MenuLinkContentStorage::getMenuLinkIdsWithPendingRevisions in core/
modules/ menu_link_content/ src/ MenuLinkContentStorage.php  - Gets a list of menu link IDs with pending revisions.
 - NodeStorage::clearRevisionsLanguage in core/
modules/ node/ src/ NodeStorage.php  - Unsets the language for all nodes with the given language.
 - NodeStorage::revisionIds in core/
modules/ node/ src/ NodeStorage.php  - Gets a list of node revision IDs for a specific node.
 - TermStorage::getTermIdsWithPendingRevisions in core/
modules/ taxonomy/ src/ TermStorage.php  - Gets a list of term IDs with pending revisions.
 
File
- core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php, line 237  
Class
- SqlContentEntityStorage
 - A content entity database storage implementation.
 
Namespace
Drupal\Core\Entity\SqlCode
public function getRevisionTable() {
  return $this->revisionTable;
}