VideoController.php 391 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace wechat\controllers;
  3. use wechat\base\CommonController;
  4. use Yii;
  5. class VideoController extends CommonController{
  6. public function actionHome()
  7. {
  8. return $this->render('home');
  9. }
  10. public function actionDetails()
  11. {
  12. return $this->render('details');
  13. }
  14. public function actionTest()
  15. {
  16. return $this->render('test');
  17. }
  18. }