5fa1b9a94789510ca9428bf4ef9d0b1e459f9f7a
[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   \Drupal::database()->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 }