コード例 #1
0
 public function actionView($id)
 {
     $topic = Topic::getTopicFromView($id);
     $pages = new Pagination(['totalCount' => $topic->comment_count, 'pageSize' => intval($this->settings['comment_pagesize']), 'pageParam' => 'p']);
     return $this->render('view', ['topic' => Util::convertModelToArray($topic), 'comments' => Comment::getCommentsFromView($id, $pages), 'pages' => $pages]);
 }