Blame view

backend/config/main.php 5.21 KB
a0e8d4e0   Alexey Boroda   first commit
1
2
3
  <?php
      use artbox\core\components\SeoUrlManager;
      use artbox\core\models\Page;
a0e8d4e0   Alexey Boroda   first commit
4
      use common\components\Sitemap;
a40d5f4b   Timur Kastemirov   sitemap 2
5
6
7
8
      use artbox\weblog\models\Article;
      use artbox\weblog\models\Category;
      use artbox\weblog\models\Tag;
      use common\models\Persone;
a0e8d4e0   Alexey Boroda   first commit
9
10
11
12
13
14
15
16
17
18
19
      
      $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',
809b0ee3   Eugeny Galkovskiy   Переводы 1
20
          'language' => 'ru',
a0e8d4e0   Alexey Boroda   first commit
21
22
23
          'basePath'            => dirname(__DIR__),
          'controllerNamespace' => 'backend\controllers',
          'bootstrap'           => [ 'log' ],
a0e8d4e0   Alexey Boroda   first commit
24
          'controllerMap'       => [
be89e918   Alexey Boroda   -Comments added i...
25
26
27
28
29
              'profile'       => 'artbox\core\controllers\ProfileController',
              'page'          => 'artbox\core\controllers\PageController',
              'page-category' => 'artbox\core\controllers\PageCategoryController',
              'alias'         => 'artbox\core\controllers\AliasController',
              'seo'           => 'artbox\core\controllers\SeoController',
91842edd   Timur Kastemirov   feedback backend
30
  //            'feedback'      => 'artbox\core\controllers\FeedbackController',
be89e918   Alexey Boroda   -Comments added i...
31
32
33
34
35
36
37
              'blog-article'  => 'artbox\weblog\controllers\ArticleController',
              'blog-category' => 'artbox\weblog\controllers\CategoryController',
              'blog-tag'      => 'artbox\weblog\controllers\TagController',
              'comment'                            => [
                  'class'    => 'artbox\webcomment\controllers\ManageController',
                  'viewPath' => '@artbox/webcomment/views/manage',
              ],
a0e8d4e0   Alexey Boroda   first commit
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
          ],
          'components'          => [
              'assetManager'       => [
                  'bundles'         => [
                      'yiister\gentelella\assets\ThemeAsset' => [
                          'basePath' => '@webroot',
                          'baseUrl'  => '@web',
                          'js'       => [
                              'js/custom.js',
                          ],
                          'css'      => [
                              'css/custom.css',
                          ],
                      ],
                  ],
                  'appendTimestamp' => true,
              ],
              'request'            => [
                  'csrfParam' => '_csrf-backend',
                  'baseUrl'   => '/admin',
              ],
              'user'               => [
                  'identityClass'   => 'artbox\core\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',
                          'levels' => [
                              'error',
                              'warning',
                          ],
                      ],
                  ],
              ],
              'errorHandler'       => [
                  'errorAction' => 'site/error',
              ],
              'urlManager'         => [
                  'enablePrettyUrl' => true,
                  'showScriptName'  => false,
                  'rules'           => [],
              ],
              'urlManagerFrontend' => [
                  'class'           => SeoUrlManager::className(),
                  'baseUrl'         => '/',
                  'enablePrettyUrl' => true,
                  'showScriptName'  => false,
                  'processRoutes'   => [
                      'page/view',
a40d5f4b   Timur Kastemirov   sitemap 2
98
99
100
101
                      'blog/article',
                      'blog/category',
                      'blog/tag',
                      'persone/view',
a0e8d4e0   Alexey Boroda   first commit
102
103
104
105
106
107
108
109
110
111
112
113
114
                  ],
                  'rules'           => [],
              ],
              'sitemap'            => [
                  'class'    => Sitemap::className(),
                  'entities' => [
                      [
                          'class'      => Page::className(),
                          'conditions' => [
                              [ 'in_menu' => 1 ],
                          ],
                          'url'        => 'page/view',
                      ],
b53af29a   Timur Kastemirov   sitemap xml gener...
115
                      [
a40d5f4b   Timur Kastemirov   sitemap 2
116
                          'class'      => Article::className(),
b53af29a   Timur Kastemirov   sitemap xml gener...
117
118
                          'url'        => 'blog/article',
                      ],
a40d5f4b   Timur Kastemirov   sitemap 2
119
120
121
122
123
124
125
126
127
128
129
130
                      [
                          'class'      => Category::className(),
                          'url'        => 'blog/category',
                      ],
                      [
                          'class'      => Tag::className(),
                          'url'        => 'blog/tag',
                      ],
                      [
                          'class'      => Persone::className(),
                          'url'        => 'persone/view',
                      ],
a0e8d4e0   Alexey Boroda   first commit
131
132
133
134
135
                  ],
              ],
          ],
          'params'              => $params,
      ];