W3cubDocs

/Drupal 8

public function EntityFieldManagerInterface::getFieldStorageDefinitions

public EntityFieldManagerInterface::getFieldStorageDefinitions($entity_type_id)

Gets the field storage definitions for a content entity type.

This returns all field storage definitions for base fields and bundle fields of an entity type. Note that field storage definitions of a base field equal the full base field definition (i.e. they implement FieldDefinitionInterface), while the storage definitions for bundle fields may implement FieldStorageDefinitionInterface only.

Parameters

string $entity_type_id: The entity type ID. Only content entities are supported.

Return value

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

See also

\Drupal\Core\Field\FieldStorageDefinitionInterface

File

core/lib/Drupal/Core/Entity/EntityFieldManagerInterface.php, line 62

Class

EntityFieldManagerInterface
Provides an interface for an entity field manager.

Namespace

Drupal\Core\Entity

Code

public function getFieldStorageDefinitions($entity_type_id);

© 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!EntityFieldManagerInterface.php/function/EntityFieldManagerInterface::getFieldStorageDefinitions/8.1.x