v1/vendor/chi-teck/drupal-code-generator/templates/hook/entity_presave.twig

10 lines
426 B
Twig

/**
* Implements hook_entity_presave().
*/
function {{ machine_name }}_entity_presave(\Drupal\Core\Entity\EntityInterface $entity) {
if ($entity instanceof ContentEntityInterface && $entity->isTranslatable()) {
$route_match = \Drupal::routeMatch();
\Drupal::service('content_translation.synchronizer')->synchronizeFields($entity, $entity->language()->getId(), $route_match->getParameter('source_langcode'));
}
}