protected SqlContentEntityStorageSchema::getEntitySchemaTables()
Gets a list of entity type tables.
Return value
array A list of entity type tables, keyed by table key.
File
- core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 566
Class
- SqlContentEntityStorageSchema
- Defines a schema handler that supports revisionable, translatable entities.
Namespace
Drupal\Core\Entity\Sql
Code
1 2 3 4 5 6 7 8 | protected function getEntitySchemaTables() { return array_filter ( array ( 'base_table' => $this ->storage->getBaseTable(), 'revision_table' => $this ->storage->getRevisionTable(), 'data_table' => $this ->storage->getDataTable(), 'revision_data_table' => $this ->storage->getRevisionDataTable(), )); } |
Please login to continue.