You are here

protected function SqlContentEntityStorageSchema::installedStorageSchema in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::installedStorageSchema()
  2. 10 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::installedStorageSchema()

Gets the keyvalue collection for tracking the installed schema.

@todo Inject this dependency in the constructor once this class can be instantiated as a regular entity handler: https://www.drupal.org/node/2332857.

Return value

\Drupal\Core\KeyValueStore\KeyValueStoreInterface

File

core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 150

Class

SqlContentEntityStorageSchema
Defines a schema handler that supports revisionable, translatable entities.

Namespace

Drupal\Core\Entity\Sql

Code

protected function installedStorageSchema() {
  if (!isset($this->installedStorageSchema)) {
    $this->installedStorageSchema = \Drupal::keyValue('entity.storage_schema.sql');
  }
  return $this->installedStorageSchema;
}