コード例 #1
0
ファイル: SideBar.php プロジェクト: quynhvv/stepup
 public function run()
 {
     // Get list category of module question
     $model = \app\modules\category\models\Category::getCategory('question', '- ');
     // Get question quan tam nhieu nhat
     $concernedQuestion = Question::find()->where(['status' => 1])->andWhere(['stats.comment_count' => ['$gt' => 0]])->orderBy(['stats.comment_count' => -1])->limit(5)->all();
     return $this->render('sidebar', ['model' => $model, 'concernedQuestion' => $concernedQuestion]);
 }