public function EntityDefinitionUpdateManagerInterface::installFieldStorageDefinition in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface::installFieldStorageDefinition()
Installs a new field storage definition.
Parameters
string $name: The field storage definition name.
string $entity_type_id: The target entity type identifier.
string $provider: The name of the definition provider.
\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field storage definition.
1 method overrides EntityDefinitionUpdateManagerInterface::installFieldStorageDefinition()
- EntityDefinitionUpdateManager::installFieldStorageDefinition in core/
lib/ Drupal/ Core/ Entity/ EntityDefinitionUpdateManager.php - Installs a new field storage definition.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityDefinitionUpdateManagerInterface.php, line 172 - Contains \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface.
Class
- EntityDefinitionUpdateManagerInterface
- Defines an interface for managing entity definition updates.
Namespace
Drupal\Core\EntityCode
public function installFieldStorageDefinition($name, $entity_type_id, $provider, FieldStorageDefinitionInterface $storage_definition);