c0f2e593
Eugeny Galkovskiy
first commit
|
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
|
'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' => [
|
c0f2e593
Eugeny Galkovskiy
first commit
|
54
55
56
57
58
59
|
'useFilename' => true,
'absoluteUrl' => false,
],
'aliasCache' => [
'class' => \artbox\core\components\AliasCache::className(),
],
|
bada6a89
Alexey Boroda
-Artbox landing p...
|
60
61
62
63
64
65
66
67
68
69
70
71
|
'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'
],
|