You are here

function sbp_nodes_comment_insert in Search by Page 7

Implements hook_comment_insert().

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

File

./sbp_nodes.module, line 258
Module file for Search by Page Nodes, a sub-module for Search by Page.

Code

function sbp_nodes_comment_insert($comment) {
  search_by_page_force_reindex('sbp_nodes', $comment->nid);
}