CourseController.php 234 B

123456789101112131415
  1. <?php
  2. namespace mobile\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. use yii\filters\AccessControl;
  6. class CourseController extends MobileendController
  7. {
  8. public function actionIndex()
  9. {
  10. return $this->renderPartial('index');
  11. }
  12. }