abf1649b
andryeyev
Чистая установка ...
|
1
2
3
4
5
6
7
|
<?php
return [
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'components' => [
'cache' => [
'class' => 'yii\caching\FileCache',
],
|
ab4d7cb1
andryeyev
Page + Языковая в...
|
8
|
'urlManager' => [
|
9da32470
Administrator
routs
|
9
|
'enablePrettyUrl' => true,
|
ab4d7cb1
andryeyev
Page + Языковая в...
|
10
11
12
|
'showScriptName' => false,
'class'=> 'common\components\LangUrlManager',
'rules'=>[
|
ab4d7cb1
andryeyev
Page + Языковая в...
|
13
14
15
16
17
18
19
20
21
|
]
],
'request' => [
'class' => 'common\components\LangRequest'
],
'i18n' => [
'translations' => [
'*' => [
'class' => 'yii\i18n\PhpMessageSource',
|
583ea05f
andryeyev
+ widget-select2
|
22
|
'basePath' => $_SERVER['DOCUMENT_ROOT'].'/common/translation',
|
ab4d7cb1
andryeyev
Page + Языковая в...
|
23
24
25
26
27
28
29
|
'fileMap' => [
'app' => 'app.php',
'app/error' => 'error.php',
],
],
],
],
|
abf1649b
andryeyev
Чистая установка ...
|
30
31
|
],
];
|