protected function SqlContentEntityStorage::getStorageSchema in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getStorageSchema()
- 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::getStorageSchema()
Gets the entity type's storage schema object.
Return value
\Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema The schema object.
13 calls to SqlContentEntityStorage::getStorageSchema()
- SqlContentEntityStorage::finalizePurge in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Performs final cleanup after all data of a field has been purged.
- SqlContentEntityStorage::onEntityTypeCreate in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Reacts to the creation of the entity type.
- SqlContentEntityStorage::onEntityTypeDelete in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Reacts to the deletion of the entity type.
- SqlContentEntityStorage::onEntityTypeUpdate in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Reacts to the update of the entity type.
- SqlContentEntityStorage::onFieldableEntityTypeCreate in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Reacts to the creation of the fieldable entity type.
File
- core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php, line 267
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\SqlCode
protected function getStorageSchema() {
if (!isset($this->storageSchema)) {
$class = $this->entityType
->getHandlerClass('storage_schema') ?: 'Drupal\\Core\\Entity\\Sql\\SqlContentEntityStorageSchema';
$this->storageSchema = new $class($this->entityTypeManager, $this->entityType, $this, $this->database, $this->entityFieldManager);
}
return $this->storageSchema;
}