function EntityTypeListenerInterface::onFieldableEntityTypeUpdate
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php \Drupal\Core\Entity\EntityTypeListenerInterface::onFieldableEntityTypeUpdate()
- 10 core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php \Drupal\Core\Entity\EntityTypeListenerInterface::onFieldableEntityTypeUpdate()
- 11.x core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php \Drupal\Core\Entity\EntityTypeListenerInterface::onFieldableEntityTypeUpdate()
Reacts to the update of a fieldable entity type.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The updated entity type definition.
\Drupal\Core\Entity\EntityTypeInterface $original: The original entity type definition.
\Drupal\Core\Field\FieldStorageDefinitionInterface[] $field_storage_definitions: The updated field storage definitions, including possibly new ones.
\Drupal\Core\Field\FieldStorageDefinitionInterface[] $original_field_storage_definitions: The original field storage definitions.
array &$sandbox: (optional) A sandbox array provided by a hook_update_N() implementation or a Batch API callback. If the entity schema update requires a data migration, this parameter is mandatory. Defaults to NULL.
3 methods override EntityTypeListenerInterface::onFieldableEntityTypeUpdate()
- EntityTypeListener::onFieldableEntityTypeUpdate in core/
lib/ Drupal/ Core/ Entity/ EntityTypeListener.php - Reacts to the update of a fieldable entity type.
- SqlContentEntityStorage::onFieldableEntityTypeUpdate in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Reacts to the update of a fieldable entity type.
- SqlContentEntityStorageSchema::onFieldableEntityTypeUpdate in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorageSchema.php - Reacts to the update of a fieldable entity type.
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityTypeListenerInterface.php, line 54
Class
- EntityTypeListenerInterface
- Defines an interface for reacting to entity type creation, deletion, and updates.
Namespace
Drupal\Core\EntityCode
public function onFieldableEntityTypeUpdate(EntityTypeInterface $entity_type, EntityTypeInterface $original, array $field_storage_definitions, array $original_field_storage_definitions, array &$sandbox = NULL);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.