Updated to Drupal 8.5. Core Media not yet in use.
[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 }