Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / field_attach_prepare_translation_alter.twig
1 /**
2  * Implements hook_field_attach_prepare_translation_alter().
3  */
4 function {{ machine_name }}_field_attach_prepare_translation_alter(&$entity, $context) {
5   if ($context['entity_type'] == 'custom_entity_type') {
6     $entity->custom_field = $context['source_entity']->custom_field;
7   }
8 }