Example #1
0
 public function comment()
 {
     $this->theme->setBreadcrumb("文章评论");
     $this->theme->setTitle("文章评论");
     $this->__view("User/header.php");
     $this->__lib("CommentList");
     $cl = new CommentList("posts");
     $list = $cl->getListOfUserOnObject(login_user()->getId());
     $this->__view("Posts/comment_show.php", ['list' => &$list, 'count' => $cl->getCount()]);
     $this->__view("User/footer.php");
 }