12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/3/13
- * Time: 上午8:46
- */
- namespace backend\controllers;
- use backend\base\Help;
- use Yii;
- use backend\base\CommonController;
- class VideoController extends CommonController
- {
- /*
- 视频分类添加页面
- */
- public function actionVideocategory()
- {
- return $this->render('videocategory');
- }
- public function actionVideoadd()
- {
- return $this->render('videoadd');
- }
-
- }
|