コード例 #1
0
ファイル: Comments.php プロジェクト: he11d0g/yii2-comments
 public function run()
 {
     $view = $this->renderOnlyComments ? 'onlyComments' : 'comments';
     $this->registerJs();
     $dataProvider = new ActiveDataProvider(['query' => Comment::find(['page_id' => $this->pageID])->joinWith('user')->orderBy('date'), 'pagination' => false]);
     echo $this->render($view, ['comments' => $dataProvider]);
 }