Pull merge.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / exit.twig
1 /**
2  * Implements hook_exit().
3  */
4 function {{ machine_name }}_exit($destination = NULL) {
5   db_update('counter')
6     ->expression('hits', 'hits + 1')
7     ->condition('type', 1)
8     ->execute();
9 }