f57c3467dac7616b43abd7052d5d6c4c222798fe
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_insert.twig
1 /**
2  * Implements hook_entity_insert().
3  */
4 function {{ machine_name }}_entity_insert(Drupal\Core\Entity\EntityInterface $entity) {
5   // Insert the new entity into a fictional table of all entities.
6   db_insert('example_entity')
7     ->fields([
8       'type' => $entity->getEntityTypeId(),
9       'id' => $entity->id(),
10       'created' => REQUEST_TIME,
11       'updated' => REQUEST_TIME,
12     ])
13     ->execute();
14 }