public function SqlContentEntityStorageSchema::__construct

public SqlContentEntityStorageSchema::__construct(EntityManagerInterface $entity_manager, ContentEntityTypeInterface $entity_type, SqlContentEntityStorage $storage, Connection $database)

Constructs a SqlContentEntityStorageSchema.

Parameters

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

\Drupal\Core\Entity\ContentEntityTypeInterface $entity_type: The entity type.

\Drupal\Core\Entity\Sql\SqlContentEntityStorage $storage: The storage of the entity type. This must be an SQL-based storage.

\Drupal\Core\Database\Connection $database: The database connection to be used.

File

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

Class

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

Namespace

Drupal\Core\Entity\Sql

Code

public function __construct(EntityManagerInterface $entity_manager, ContentEntityTypeInterface $entity_type, SqlContentEntityStorage $storage, Connection $database) {
  $this->entityManager = $entity_manager;
  $this->entityType = $entity_type;
  $this->fieldStorageDefinitions = $entity_manager->getFieldStorageDefinitions($entity_type->id());
  $this->storage = $storage;
  $this->database = $database;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Sql!SqlContentEntityStorageSchema.php/function/SqlContentEntityStorageSchema::__construct/8.1.x