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