function hook_comment_insert
The comment is being inserted.
Parameters
$comment: The comment object.
Related topics
5 functions implement hook_comment_insert()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- EntityCrudHookTestHooks::commentInsert in core/
modules/ system/ tests/ modules/ entity_crud_hook_test/ src/ Hook/ EntityCrudHookTestHooks.php - Implements hook_ENTITY_TYPE_insert() for comment entities.
- entity_crud_hook_test_comment_insert in modules/
simpletest/ tests/ entity_crud_hook_test.module - Implements hook_comment_insert().
- NodeHooks1::commentInsert in core/
modules/ node/ src/ Hook/ NodeHooks1.php - Implements hook_ENTITY_TYPE_insert() for comment entities.
- search_comment_insert in modules/
search/ search.module - Implements hook_comment_insert().
- trigger_comment_insert in modules/
trigger/ trigger.module - Implements hook_comment_insert().
1 invocation of hook_comment_insert()
- comment_save in modules/
comment/ comment.module - Accepts a submission of new or changed comment content.
File
-
modules/
comment/ comment.api.php, line 32
Code
function hook_comment_insert($comment) {
// Reindex the node when comments are added.
search_touch_node($comment->nid);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.