Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / node_update_index.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/node_update_index.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/node_update_index.twig
new file mode 100644 (file)
index 0000000..42e533f
--- /dev/null
@@ -0,0 +1,11 @@
+/**
+ * Implements hook_node_update_index().
+ */
+function {{ machine_name }}_node_update_index($node) {
+  $text = '';
+  $comments = db_query('SELECT subject, comment, format FROM {comment} WHERE nid = :nid AND status = :status', array(':nid' => $node->nid, ':status' => COMMENT_PUBLISHED));
+  foreach ($comments as $comment) {
+    $text .= '<h2>' . check_plain($comment->subject) . '</h2>' . check_markup($comment->comment, $comment->format, '', TRUE);
+  }
+  return $text;
+}