drupal函数:hook_comment_delete

modules/comment/comment.api.php, 103行

版本
7
hook_comment_delete(&$comment)

评论被管理员删除.

参数

$comment Passes in the comment the action is being performed on.

返回值

Nothing.

相关主题

Hooks
Allow modules to interact with the Drupal core.

代码

hook_comment_delete(&$comment) { drupal_set_message(t('Comment: @subject has been deleted', array('@subject' => $comment->subject))); } ?>


Syndicate content