Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / ENTITY_TYPE_translation_insert.twig
1 /**
2  * Implements hook_ENTITY_TYPE_translation_insert().
3  */
4 function {{ machine_name }}_ENTITY_TYPE_translation_insert(\Drupal\Core\Entity\EntityInterface $translation) {
5   $variables = [
6     '@language' => $translation->language()->getName(),
7     '@label' => $translation->getUntranslated()->label(),
8   ];
9   \Drupal::logger('example')->notice('The @language translation of @label has just been stored.', $variables);
10 }