function hook_comment_update
The comment is being updated.
Parameters
$comment: The comment object.
Related topics
5 functions implement hook_comment_update()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_crud_hook_test_comment_update in modules/
simpletest/ tests/ entity_crud_hook_test.module - Implements hook_comment_update().
- forum_comment_update in modules/
forum/ forum.module - Implements hook_comment_update().
- search_comment_update in modules/
search/ search.module - Implements hook_comment_update().
- tracker_comment_update in modules/
tracker/ tracker.module - Implements hook_comment_update().
- trigger_comment_update in modules/
trigger/ trigger.module - Implements hook_comment_update().
1 invocation of hook_comment_update()
- comment_save in modules/
comment/ comment.module - Accepts a submission of new or changed comment content.
File
-
modules/
comment/ comment.api.php, line 43
Code
function hook_comment_update($comment) {
// Reindex the node when comments are updated.
search_touch_node($comment->nid);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.