2018-10-11 11:15:09 +03:00
|
|
|
<?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',
|
2018-11-21 17:02:14 +03:00
|
|
|
'language' => 'ru',
|
2018-10-11 11:15:09 +03:00
|
|
|
'bootstrap' => ['log'],
|
|
|
|
|
|
|
|
'modules' => [
|
2019-10-22 18:03:40 +03:00
|
|
|
'accesses' => [
|
|
|
|
'class' => 'backend\modules\accesses\Accesses',
|
|
|
|
],
|
2018-10-12 14:52:08 +03:00
|
|
|
'settings' => [
|
|
|
|
'class' => 'backend\modules\settings\Settings',
|
2018-10-11 11:15:09 +03:00
|
|
|
],
|
|
|
|
'card' => [
|
|
|
|
'class' => 'backend\modules\card\Card',
|
|
|
|
],
|
|
|
|
'project' => [
|
|
|
|
'class' => 'backend\modules\project\Project',
|
|
|
|
],
|
2018-10-11 17:24:47 +03:00
|
|
|
'company' => [
|
|
|
|
'class' => 'backend\modules\company\Company',
|
|
|
|
],
|
2018-11-21 17:02:14 +03:00
|
|
|
'hh' => [
|
|
|
|
'class' => 'backend\modules\hh\Hh',
|
|
|
|
],
|
2019-06-21 18:05:58 +03:00
|
|
|
'balance' => [
|
|
|
|
'class' => 'backend\modules\balance\Balance',
|
|
|
|
],
|
2019-07-16 11:58:05 +03:00
|
|
|
'holiday' => [
|
|
|
|
'class' => 'backend\modules\holiday\Holiday',
|
|
|
|
],
|
2019-12-05 15:05:33 +03:00
|
|
|
'notes' => [
|
|
|
|
'class' => 'backend\modules\notes\Notes',
|
|
|
|
],
|
2020-01-17 16:28:25 +03:00
|
|
|
'calendar' => [
|
|
|
|
'class' => 'backend\modules\calendar\Calendar',
|
|
|
|
],
|
2020-02-04 12:17:14 +03:00
|
|
|
'gridview' => [
|
|
|
|
'class' => 'kartik\grid\Module',
|
2020-02-05 12:08:01 +03:00
|
|
|
],
|
|
|
|
'reports' => [
|
|
|
|
'class' => 'backend\modules\reports\Reports',
|
|
|
|
],
|
2021-06-09 18:06:13 +03:00
|
|
|
'options' => [
|
|
|
|
'class' => 'backend\modules\options\Options',
|
|
|
|
],
|
2021-08-16 14:32:54 +03:00
|
|
|
'interview' => [
|
|
|
|
'class' => 'backend\modules\interview\Interview',
|
|
|
|
],
|
2021-09-08 17:44:54 +03:00
|
|
|
'achievements' => [
|
|
|
|
'class' => 'backend\modules\achievements\Achievements',
|
|
|
|
],
|
2021-10-22 16:55:08 +03:00
|
|
|
'test' => [
|
|
|
|
'class' => 'backend\modules\test\Test',
|
|
|
|
],
|
|
|
|
'questionnaire' => [
|
|
|
|
'class' => 'backend\modules\questionnaire\Questionnaire',
|
|
|
|
],
|
2021-10-28 10:46:59 +03:00
|
|
|
'api' => [
|
|
|
|
'components' => [
|
|
|
|
'user' => [
|
|
|
|
'identityClass' => 'backend\modules\api\models\User',
|
|
|
|
'enableAutoLogin' => true,
|
|
|
|
'enableSession' => false,
|
|
|
|
'class' => 'backend\modules\api\models\User',
|
|
|
|
//'identityCookie' => ['name' => '_identity-api', 'httpOnly' => true],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'class' => 'backend\modules\api\Api',
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
],
|
|
|
|
'components' => [
|
|
|
|
'request' => [
|
|
|
|
'csrfParam' => '_csrf-backend',
|
2021-10-22 16:55:08 +03:00
|
|
|
'baseUrl' => '', // /secure
|
2021-10-28 10:46:59 +03:00
|
|
|
'parsers' => [
|
|
|
|
'application/json' => 'yii\web\JsonParser',
|
|
|
|
'text/xml' => 'yii/web/XmlParser',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'response' => [
|
|
|
|
'formatters' => [
|
|
|
|
'json' => [
|
|
|
|
'class' => 'yii\web\JsonResponseFormatter',
|
|
|
|
'prettyPrint' => YII_DEBUG,
|
|
|
|
'encodeOptions' => JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE,
|
|
|
|
],
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
],
|
|
|
|
'user' => [
|
|
|
|
'identityClass' => 'common\models\User',
|
|
|
|
'enableAutoLogin' => true,
|
2021-10-28 10:46:59 +03:00
|
|
|
// 'enableSession' => false,
|
2018-10-11 11:15:09 +03:00
|
|
|
'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true],
|
|
|
|
],
|
2021-08-12 13:57:00 +03:00
|
|
|
'authManager' => [
|
|
|
|
'class' => 'yii\rbac\DbManager',
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
'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',
|
|
|
|
'levels' => ['error', 'warning'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'errorHandler' => [
|
|
|
|
'errorAction' => 'site/error',
|
|
|
|
],
|
|
|
|
'urlManager' => [
|
|
|
|
'enablePrettyUrl' => true,
|
|
|
|
'showScriptName' => false,
|
|
|
|
'rules' => [
|
2019-11-15 13:25:48 +03:00
|
|
|
'' => '/card/user-card',
|
2021-10-28 10:46:59 +03:00
|
|
|
// 'api/user-questionnaire/<id:\d+>' => 'api/profile/user-questionnaire',
|
|
|
|
[
|
|
|
|
'class' => 'yii\rest\UrlRule',
|
|
|
|
'controller' => 'user-questionnaire',
|
|
|
|
'except' => ['delete', 'update'],
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
],
|
2018-10-11 14:52:44 +03:00
|
|
|
'as access' => [
|
|
|
|
'class' => 'yii\filters\AccessControl',
|
|
|
|
'except' => ['site/login', 'site/error'],
|
|
|
|
'rules' => [
|
|
|
|
[
|
|
|
|
'allow' => true,
|
|
|
|
'roles' => ['@'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
'params' => $params,
|
|
|
|
];
|