| Versionen | |
|---|---|
| drupal7 | hook_comment_publish($form_values) |
The comment is being published by the moderator.
$form_values Passes in an array of form values submitted by the user.
Nothing.
modules/
<?php
function hook_comment_publish($form_values) {
drupal_set_message(t('Comment: @subject has been published', array('@subject' => $form_values['subject'])));
}
?>
Kommentare
Kommentar hinzufügen