public FieldStorageDefinitionListener::onFieldStorageDefinitionUpdate(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original)
Reacts to the update of a field storage definition.
Parameters
\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field being updated.
\Drupal\Core\Field\FieldStorageDefinitionInterface $original: The original storage definition; i.e., the definition before the update.
Throws
\Drupal\Core\Entity\Exception\FieldStorageDefinitionUpdateForbiddenException Thrown when the update to the field is forbidden.
Overrides FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionUpdate
File
- core/lib/Drupal/Core/Field/FieldStorageDefinitionListener.php, line 86
Class
- FieldStorageDefinitionListener
- Reacts to field storage definition CRUD on behalf of the Entity system.
Namespace
Drupal\Core\Field
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | public function onFieldStorageDefinitionUpdate(FieldStorageDefinitionInterface $storage_definition , FieldStorageDefinitionInterface $original ) { $entity_type_id = $storage_definition ->getTargetEntityTypeId(); // @todo Forward this to all interested handlers, not only storage, once // iterating handlers is possible: https://www.drupal.org/node/2332857. $storage = $this ->entityTypeManager->getStorage( $entity_type_id ); if ( $storage instanceof FieldStorageDefinitionListenerInterface) { $storage ->onFieldStorageDefinitionUpdate( $storage_definition , $original ); } $this ->eventDispatcher->dispatch(FieldStorageDefinitionEvents::UPDATE, new FieldStorageDefinitionEvent( $storage_definition , $original )); $this ->entityLastInstalledSchemaRepository->setLastInstalledFieldStorageDefinition( $storage_definition ); $this ->entityFieldManager->clearCachedFieldDefinitions(); } |
Please login to continue.