VideoController.php 393 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace backend\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. use yii\filters\AccessControl;
  6. use yii\data\Pagination;
  7. class VideoController extends BackendController
  8. {
  9. public function actionIndex()
  10. {
  11. return $this->render('index');
  12. }
  13. public function actionHyzx()
  14. {
  15. return $this->render('hyzx');
  16. }
  17. public function actionMore()
  18. {
  19. return $this->render('more');
  20. }
  21. }