12345678910111213141516171819202122 |
- <?php
- namespace mobile\controllers;
- use mobile\base\CommonController;
- class ActivityController extends CommonController{
- public function actionHome()
- {
- return $this->render('home');
- }
- public function actionDetails()
- {
- return $this->render('details');
- }
- }
|