Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / ENTITY_TYPE_field_values_init.twig
1 /**
2  * Implements hook_ENTITY_TYPE_field_values_init().
3  */
4 function {{ machine_name }}_ENTITY_TYPE_field_values_init(\Drupal\Core\Entity\FieldableEntityInterface $entity) {
5   if (!$entity->foo->value) {
6     $entity->foo->value = 'some_initial_value';
7   }
8 }