46774485751d475c41a4c9671f82ae105241311a
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / node_update_index.twig
1 /**
2  * Implements hook_node_update_index().
3  */
4 function {{ machine_name }}_node_update_index(\Drupal\node\NodeInterface $node) {
5   $text = '';
6   $ratings = db_query('SELECT title, description FROM {my_ratings} WHERE nid = :nid', [':nid' => $node->id()]);
7   foreach ($ratings as $rating) {
8     $text .= '<h2>' . Html::escape($rating->title) . '</h2>' . Xss::filter($rating->description);
9   }
10   return $text;
11 }