123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace backend\controllers;
- use backend\base\CommonController;
- use Yii;
- use yii\helpers\ArrayHelper;
- class IndexController extends CommonController
- {
-
- public function actionIndex()
- {
- $model = new \backend\server\Menus();
- $row = $model->TopMenu();
- return $this->render('index',['model'=>$row]);
- }
-
- public function actionMain()
- {
- return $this->render('main');
- }
-
- public function actionShow()
- {
- return $this->render('show');
- }
- }
|