4cd40991d8b07d13438b175020afc3f9697f70ca
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / comment_view.twig
1 /**
2  * Implements hook_comment_view().
3  */
4 function {{ machine_name }}_comment_view($comment, $view_mode, $langcode) {
5   // how old is the comment
6   $comment->time_ago = time() - $comment->changed;
7 }