main.php
2.73 KB
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
29
30
31
32
33
34
35
36
37
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
<?php
use artbox\core\components\SeoComponent;
$mail = require ('mail.php');
return [
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'modules' => [
'imagemanager' => [
'class' => 'artbox\core\components\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',
],
],
],
'components' => [
'cache' => [
'class' => 'yii\caching\FileCache',
],
'i18n' => [
'translations' => [
'core' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@artbox/core/messages',
],
'app' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
],
],
],
'filedb' => [
'class' => 'yii2tech\filedb\Connection',
'path' => '@common/config',
],
'sitemapdb' => [
'class' => 'yii2tech\filedb\Connection',
'path' => '@common/config',
'primaryKeyName' => 'id',
],
'seo' => [
'class' => SeoComponent::className(),
],
'imagemanager' => [
'class' => 'artbox\core\components\imagemanager\components\ImageManagerGetPath',
'mediaPath' => dirname(dirname(__DIR__)) . '/storage',
'cachePath' => '../../storage/cache',
'useFilename' => true,
'absoluteUrl' => false,
],
'aliasCache' => [
'class' => \artbox\core\components\AliasCache::className(),
],
'smtpmailer' => [
'class' => 'yii\swiftmailer\Mailer',
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => $mail[ 1 ][ 'host' ],
'username' => $mail[ 1 ][ 'user' ],
'password' => $mail[ 1 ][ 'pass' ],
'port' => '587',
'encryption' => 'tls',
],
'viewPath' => '@common/mail'
],
],
];