| Versionen | |
|---|---|
| drupal7 | hook_comment_insert($form_values) |
The comment is being inserted.
$form_values Passes in an array of form values submitted by the user.
Nothing.
modules/
<?php
function hook_comment_insert($form_values) {
// Reindex the node when comments are added.
search_touch_node($form_values['nid']);
}
?>
Kommentare
Kommentar hinzufügen