You are here

protected function SqlContentEntityStorage::getStorageSchema 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::getStorageSchema()
  2. 10 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.

File

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

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

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;
}