如何在管理员回复该评论时批准Drupal中的评论?

时间:2013-05-24 06:52:06

标签: drupal drupal-7 drupal-comments

我想在管理员回复特定评论时自动批准评论。 wordpress中提供此功能。

1 个答案:

答案 0 :(得分:0)

如果您知道如何编写模块,则可以通过实施hook_comment_insert()

来实现
function MODULE_comment_insert($comment) {
  global $user;
  //check for the administrators
  if(in_array('administrator', array_values($user->roles))) {
    $comment->status = 1; // 0 for unpublished.
    comment_save($comment);
  }
}