| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace backend\controllers;
- use yii\web\Controller;
- class SiteController extends Controller
- {
- /**
- * @inheritdoc
- */
- public function actions()
- {
- return [
- 'error' => [
- 'class' => 'yii\web\ErrorAction',
- ],
- ];
- }
- /**
- * 首页
- * @return string
- */
- public function actionIndex()
- {
- return $this->renderPartial('default');
- }
- }
|