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