2c95217d573889f49dfba97e77d711ccda2138de
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / ENTITY_TYPE_update.twig
1 /**
2  * Implements hook_ENTITY_TYPE_update().
3  */
4 function {{ machine_name }}_ENTITY_TYPE_update(Drupal\Core\Entity\EntityInterface $entity) {
5   // Update the entity's entry in a fictional table of this type of entity.
6   db_update('example_entity')
7     ->fields([
8       'updated' => REQUEST_TIME,
9     ])
10     ->condition('id', $entity->id())
11     ->execute();
12 }