You are here

public function SqlContentEntityStorage::getFieldStorageDefinitions in Drupal 8

Gets the base field definitions for a content entity type.

Return value

\Drupal\Core\Field\FieldDefinitionInterface[] The array of base field definitions for the entity type, keyed by field name.

Deprecated

in drupal:8.7.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityFieldManagerInterface::getActiveFieldStorageDefinitions() instead.

See also

https://www.drupal.org/node/3040966

File

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

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

public function getFieldStorageDefinitions() {
  @trigger_error('SqlContentEntityStorage::getFieldStorageDefinitions() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \\Drupal\\Core\\Entity\\EntityFieldManagerInterface::getActiveFieldStorageDefinitions() instead. See https://www.drupal.org/node/3040966.', E_USER_DEPRECATED);
  return $this->entityFieldManager
    ->getBaseFieldDefinitions($this->entityTypeId);
}