12345678910111213141516171819202122232425 |
- <?php
- namespace wechat\controllers;
- use wechat\base\CommonController;
- use Yii;
- class VideoController extends CommonController{
- public function actionHome()
- {
- return $this->render('home');
- }
- public function actionDetails()
- {
- return $this->render('details');
- }
- public function actionTest()
- {
- return $this->render('test');
- }
- }
|