Blame view

backend/config/main.php 1.49 KB
b0f143c3   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?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')
  );
  
  define ('IS_FRONT', FALSE);
  
  return [
      'id' => 'app-backend',
      'basePath' => dirname(__DIR__),
      'controllerNamespace' => 'backend\controllers',
fba123c8   Yarik   test
16
17
18
19
20
21
22
23
      'bootstrap' => [
          'log',
          function() {
              if(!\Yii::$app->user->can('viewAdmin')) {
                  return \Yii::$app->response->redirect('/');
              }
          }
      ],
b0f143c3   Yarik   first commit
24
25
26
27
28
29
30
31
32
33
34
35
36
      'modules' => [
          'permit' => [
              'class' => 'developeruz\db_rbac\Yii2DbRbac',
              'params' => [
                  'userClass' => 'common\models\User'
              ]
          ],
      ],
      'components' => [
          'user' => [
              'identityClass' => 'common\models\User',
              'enableAutoLogin' => true,
          ],
c8a3b6d1   Administrator   firs page
37
38
39
          'request' => [
              'class' => 'common\components\LangRequest'
          ],
b0f143c3   Yarik   first commit
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
          'urlManager' => [
              'enablePrettyUrl' => true,
              'showScriptName' => false, 
          ],
          'log' => [
              'traceLevel' => YII_DEBUG ? 3 : 0,
              'targets' => [
                  [
                      'class' => 'yii\log\FileTarget',
                      'levels' => ['error', 'warning'],
                  ],
              ],
          ],
          'errorHandler' => [
              'errorAction' => 'site/error',
          ],
      ],
      'params' => $params,
  ];