12345678910111213141516171819202122232425262728 |
- <?php
- 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');
- }
-
- }
|