12345678910111213141516171819202122232425262728 |
- <?php
- namespace company\modules\manage\controllers;
- use yii\web\Controller;
- use company\modules\manage\controllers\LoginverifyController;
- /**
- * Default controller for the `mamage` module
- */
- class DefaultController extends LoginverifyController
- {
- public $layout ='iframe';
- /**
- * Renders the index view for the module
- * @return string
- */
- public function actionIndex()
- {
- $this->layout = 'hplus';
- return $this->render('index');
- }
- public function actionHome(){
- return $this->render('home');
- }
- }
|