Blame view

backend/config/main.php 3.13 KB
1755c393   Yarik   Basic template in...
1
  <?php
b66c9c5a   Alexey Boroda   -Admin template s...
2
3
4
5
6
7
8
9
10
11
12
13
14
      $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',
          'homeUrl'             => '/admin',
          'basePath'            => dirname(__DIR__),
          'controllerNamespace' => 'backend\controllers',
          'bootstrap'           => [ 'log' ],
219af3d1   Alexey Boroda   -Image manager ready
15
16
17
18
19
20
21
22
23
24
25
26
27
          'modules'             => [
              'imagemanager' => [
                  'class' => 'noam148\imagemanager\Module',
                  'canUploadImage' => true,
                  'canRemoveImage' => function(){
                      return true;
                  },
                  'setBlameableBehavior' => false,
                  'cssFiles' => [
                      'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css',
                  ],
              ],
          ],
b66c9c5a   Alexey Boroda   -Admin template s...
28
          'components'          => [
219af3d1   Alexey Boroda   -Image manager ready
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
              'assetManager' => [
                  'bundles' => [
                      'yiister\gentelella\assets\ThemeAsset' => [
                          'sourcePath' => '@backend/assets/',
                          'js'         => [
                              'js/custom.js',
                          ],
                          'css'        => [
                              'css/custom.css',
                          ],
                      ],
                  ],
              ],
              'imagemanager' => [
                  'class' => 'noam148\imagemanager\components\ImageManagerGetPath',
                  'mediaPath' => dirname(dirname(__DIR__)) . '/storage',
                  'cachePath' => 'assets/images',
                  'useFilename' => true,
                  'absoluteUrl' => false,
              ],
b66c9c5a   Alexey Boroda   -Admin template s...
49
50
51
52
53
54
55
56
57
58
              'request'      => [
                  'csrfParam' => '_csrf-backend',
                  'baseUrl'   => '/admin',
              ],
              'user'         => [
                  'identityClass'   => 'common\models\User',
                  'enableAutoLogin' => true,
                  'identityCookie'  => [
                      'name'     => '_identity-backend',
                      'httpOnly' => true,
1755c393   Yarik   Basic template in...
59
60
                  ],
              ],
b66c9c5a   Alexey Boroda   -Admin template s...
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
              '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'           => [],
1755c393   Yarik   Basic template in...
84
85
              ],
          ],
b66c9c5a   Alexey Boroda   -Admin template s...
86
87
          'params'              => $params,
      ];