コード例 #1
0
ファイル: PotokController.php プロジェクト: tsyrya/mybriop
 public function actionTemaList($kurs)
 {
     Yii::$app->response->format = Response::FORMAT_JSON;
     $query = Tema::find()->customInfo()->where(['kurs.id' => $kurs]);
     $filter = new TemaFilter();
     if ($filter->load(Yii::$app->request->get(), '') && !$query->andFilter($filter)) {
         throw new BadRequestHttpException();
     }
     return $query->formatted();
 }