Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / node_search_result.twig
1 /**
2  * Implements hook_node_search_result().
3  */
4 function {{ machine_name }}_node_search_result($node) {
5   $comments = db_query('SELECT comment_count FROM {node_comment_statistics} WHERE nid = :nid', array('nid' => $node->nid))->fetchField();
6   return array('comment' => format_plural($comments, '1 comment', '@count comments'));
7 }