示例#1
0
文件: feed.php 项目: rasuldev/torino
 public function moderate($id, $show)
 {
     $comment = Comment::createFromId($this, $id);
     if (!$this->canModerate()) {
         $this->errorCollection->addOne(new Error(Loc::getMessage("FORUM_CM_RIGHTS4"), self::ERROR_PERMISSION));
     } else {
         $comment->moderate($show);
         if ($comment->hasErrors()) {
             $this->errorCollection->add($comment->getErrors());
         } else {
             return $comment->getComment();
         }
     }
     return false;
 }