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

7 lines
229 B
Twig

/**
* Implements hook_entity_create().
*/
function {{ machine_name }}_entity_create(\Drupal\Core\Entity\EntityInterface $entity) {
\Drupal::logger('example')->info('Entity created: @label', ['@label' => $entity->label()]);
}