public function EntityFieldManagerInterface::getFieldStorageDefinitions in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityFieldManagerInterface.php \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldStorageDefinitions()
- 9 core/lib/Drupal/Core/Entity/EntityFieldManagerInterface.php \Drupal\Core\Entity\EntityFieldManagerInterface::getFieldStorageDefinitions()
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\EntityCode
public function getFieldStorageDefinitions($entity_type_id);