public FieldDefinitionListener::onFieldDefinitionUpdate(FieldDefinitionInterface $field_definition, FieldDefinitionInterface $original)
Reacts to the update of a field.
Parameters
\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The field definition being updated.
\Drupal\Core\Field\FieldDefinitionInterface $original: The original field definition; i.e., the definition before the update.
Overrides FieldDefinitionListenerInterface::onFieldDefinitionUpdate
File
- core/lib/Drupal/Core/Field/FieldDefinitionListener.php, line 108
Class
- FieldDefinitionListener
- Reacts to field definition CRUD on behalf of the Entity system.
Namespace
Drupal\Core\Field
Code
1 2 3 4 | public function onFieldDefinitionUpdate(FieldDefinitionInterface $field_definition , FieldDefinitionInterface $original ) { // Notify the storage about the updated field. $this ->entityTypeManager->getStorage( $field_definition ->getTargetEntityTypeId())->onFieldDefinitionUpdate( $field_definition , $original ); } |
Please login to continue.