VideoController.php 497 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/3/13
  6. * Time: 上午8:46
  7. */
  8. namespace backend\controllers;
  9. use backend\base\Help;
  10. use Yii;
  11. use backend\base\CommonController;
  12. class VideoController extends CommonController
  13. {
  14. /*
  15. 视频分类添加页面
  16. */
  17. public function actionVideocategory()
  18. {
  19. return $this->render('videocategory');
  20. }
  21. public function actionVideoadd()
  22. {
  23. return $this->render('videoadd');
  24. }
  25. }