67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
|
<?php
|
||
|
$params = array_merge(
|
||
|
require __DIR__ . '/../../common/config/params.php',
|
||
|
require __DIR__ . '/../../common/config/params-local.php',
|
||
|
require __DIR__ . '/params.php',
|
||
|
require __DIR__ . '/params-local.php'
|
||
|
);
|
||
|
|
||
|
return [
|
||
|
'id' => 'app-backend',
|
||
|
'basePath' => dirname(__DIR__),
|
||
|
'controllerNamespace' => 'backend\controllers',
|
||
|
'bootstrap' => ['log'],
|
||
|
'homeUrl' => '/secure',
|
||
|
'modules' => [
|
||
|
'table' => [
|
||
|
'class' => 'app\modules\table\Table',
|
||
|
],
|
||
|
'category' => [
|
||
|
'class' => 'app\modules\category\Category',
|
||
|
],
|
||
|
'product' => [
|
||
|
'class' => 'app\modules\product\Product',
|
||
|
],
|
||
|
'order' => [
|
||
|
'class' => 'app\modules\order\Order',
|
||
|
],
|
||
|
'banner' => [
|
||
|
'class' => 'app\modules\banner\Banner',
|
||
|
],
|
||
|
],
|
||
|
'components' => [
|
||
|
'request' => [
|
||
|
'csrfParam' => '_csrf-backend',
|
||
|
'baseUrl' => '/secure',
|
||
|
],
|
||
|
'user' => [
|
||
|
'identityClass' => 'common\models\User',
|
||
|
'enableAutoLogin' => true,
|
||
|
'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true],
|
||
|
],
|
||
|
'session' => [
|
||
|
// this is the name of the session cookie used for login on the backend
|
||
|
'name' => 'advanced-backend',
|
||
|
],
|
||
|
'log' => [
|
||
|
'traceLevel' => YII_DEBUG ? 3 : 0,
|
||
|
'targets' => [
|
||
|
[
|
||
|
'class' => \yii\log\FileTarget::class,
|
||
|
'levels' => ['error', 'warning'],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'errorHandler' => [
|
||
|
'errorAction' => 'site/error',
|
||
|
],
|
||
|
'urlManager' => [
|
||
|
'enablePrettyUrl' => true,
|
||
|
'showScriptName' => false,
|
||
|
'rules' => [
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
'params' => $params,
|
||
|
];
|