| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace backend\controllers;
- use Yii;
- use yii\web\Controller;
- use yii\filters\AccessControl;
- use yii\data\Pagination;
- class VideoController extends BackendController
- {
- public function actionIndex()
- {
- return $this->render('index');
- }
-
- public function actionHyzx()
- {
- return $this->render('hyzx');
- }
-
- public function actionMore()
- {
- return $this->render('more');
- }
-
- }
|