Blame view

common/config/main.php 2.91 KB
298bc0f4   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  <?php
      use artbox\core\components\AliasCache;
      use artbox\core\components\SeoComponent;
      use artbox\core\rating\Module;
      
      return [
          'aliases' => [
              '@bower' => '@vendor/bower-asset',
              '@npm'   => '@vendor/npm-asset',
          ],
          'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
          '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',
                  ],
              ],
              'rating' => [
                  'class' => Module::className()
              ]
          ],
          'components' => [
8d88a552   alex   Add Google Recapt...
29
30
31
32
33
34
35
  
  	        'reCaptcha' => [
  		        'name' => 'reCaptcha',
  		        'class' => 'sashsvamir\yii2\recaptcha\ReCaptcha',
  		        'siteKey' => '6LcZcmQUAAAAANF1TashIYAvYtTBCscpTlPe1q6T',
  		        'secret' => '6LcZcmQUAAAAAFH4Ru4S6QnmB3An3PJWglmV',
  	        ],
298bc0f4   Alexey Boroda   first commit
36
37
38
39
40
41
42
43
44
              'cache'              => [
                  'class' => 'yii\caching\FileCache',
              ],
              'i18n'               => [
                  'translations' => [
                      'core'    => [
                          'class'    => 'yii\i18n\PhpMessageSource',
                          'basePath' => '@artbox/core/messages',
                      ],
298bc0f4   Alexey Boroda   first commit
45
46
47
48
                      'app'     => [
                          'class'    => 'yii\i18n\PhpMessageSource',
                          'basePath' => '@common/messages',
                      ],
298bc0f4   Alexey Boroda   first commit
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
                  ],
              ],
              'filedb'             => [
                  'class' => 'yii2tech\filedb\Connection',
                  'path'  => '@common/config',
              ],
              'sitemapdb'          => [
                  'class'          => 'yii2tech\filedb\Connection',
                  'path'           => '@common/config',
                  'primaryKeyName' => 'id',
              ],
              'seo'                => [
                  'class' => SeoComponent::className(),
              ],
              'imagemanager'       => [
                  'class'       => 'noam148\imagemanager\components\ImageManagerGetPath',
                  'mediaPath'   => dirname(dirname(__DIR__)) . '/storage',
                  'cachePath'   => '../../storage/cache',
                  'useFilename' => true,
                  'absoluteUrl' => false,
              ],
              'assetManager'       => [
                  'bundles' => [
                      'yii\jui\JuiAsset' => [
                          'css' => [],
                      ],
                  ],
              ],
              'aliasCache'         => [
                  'class' => AliasCache::className(),
              ],
          ],
      ];