content_moderation_entity_update(EntityInterface $entity)
Implements hook_entity_update().
File
- core/modules/content_moderation/content_moderation.module, line 105
- Contains content_moderation.module.
Code
1 2 3 4 5 | function content_moderation_entity_update(EntityInterface $entity ) { return \Drupal::service( 'class_resolver' ) ->getInstanceFromDefinition(EntityOperations:: class ) ->entityUpdate( $entity ); } |
Please login to continue.