You are here

function search_by_page_nodes_comment_insert in Search by Page 8

Implements hook_comment_insert().

When a comment is added, edited, or deleted, set its node for reindexing at the next cron run.

File

search_by_page_nodes/search_by_page_nodes.module, line 262
Module file for Search by Page Nodes, a sub-module for Search by Page.

Code

function search_by_page_nodes_comment_insert($comment) {
  search_by_page_force_reindex('search_by_page_nodes', $comment->nid);
}