| Versionen | |
|---|---|
| drupal7 | hook_comment_unpublish(&$comment) |
The comment is being unpublished by the moderator.
$comment Passes in the comment the action is being performed on.
Nothing.
modules/
<?php
function hook_comment_unpublish(&$comment) {
drupal_set_message(t('Comment: @subject has been unpublished', array('@subject' => $comment->subject)));
}
?>
Kommentare
Kommentar hinzufügen