8df80521
Alexander Karnovsky
not fixed commite
|
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
|
<?php
$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-frontend',
'basePath' => dirname(__DIR__),
'layout' => 'site_content',
'bootstrap' => ['log'],
'controllerNamespace' => 'frontend\controllers',
'components' => [
'user' => [
'identityClass' => 'common\models\Customers',
'enableAutoLogin' => true,
'identityCookie' => [
'name' => '_frontendUser', // unique for frontend
]
],
'request'=>[
'cookieValidationKey' => 'ndahjhjjidasuidrqeswuiuirqw89',
'csrfParam' => '_frontendCSRF',
'class' => 'common\components\Request',
'web'=> '/frontend/web'
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'errorHandler' => [
'errorAction' => 'site/error',
],
|
e2128676
Karnovsky A
Karnovsky 0505201...
|
44
45
46
47
|
'imageCache' => [
'class' => 'iutbay\yii2imagecache\ImageCache',
'sourcePath' => '@app/web/images',
'sourceUrl' => '@web/images',
|
c3695da4
Karnovsky A
imageCache mode
|
48
|
'resizeMode' => 'inset',
|
e2128676
Karnovsky A
Karnovsky 0505201...
|
49
|
'sizes' => [
|
b8f14fca
Karnovsky A
imageCache preset
|
50
|
'brandlist' => [128, 128],
|
dc50f607
Karnovsky A
Some fixes
|
51
52
|
'product' => [300, 300],
'product_trumb' => [80, 80],
|
e2128676
Karnovsky A
Karnovsky 0505201...
|
53
54
55
56
57
58
|
'product_list' => [130, 70],
'product_list2' => [130, 70],
'mainmenu' => [160, 170],
'large' => [600, 600],
],
],
|
8df80521
Alexander Karnovsky
not fixed commite
|
59
60
61
62
63
|
'urlManager' => [
'baseUrl' => '/',
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
|
6fa713ca
Karnovsky A
Catalog v 1.2
|
64
65
66
67
68
69
70
71
|
[
'class' => '\common\modules\product\CatalogUrlManager',
'route_map' => [
'catalog' => 'catalog/category',
'product' => 'catalog/product',
'brand' => 'catalog/brand',
]
],
|
cb6805b8
Administrator
12.04.16 finish ...
|
72
73
74
|
'page/<translit:[A-Za-z0-9_-]++>'=>'page/show',
'event/view/<alias:[A-Za-z0-9_-]+>'=>'event/view',
'service/view/<alias:[A-Za-z0-9_-]+>'=>'service/view',
|
e2128676
Karnovsky A
Karnovsky 0505201...
|
75
|
'thumbs/<path:.*>' => 'site/thumb',
|
6fa713ca
Karnovsky A
Catalog v 1.2
|
76
77
78
79
80
81
|
//// 'catalog' => 'catalog/category',
// 'catalog/<alias:[A-Za-z0-9_-]+>' => 'catalog/category',
// 'catalog/<alias:[A-Za-z0-9_-]+>/<filter>' => 'catalog/category',
// 'product/<alias:[A-Za-z0-9_-]+>' => 'catalog/product',
// 'brand' => 'catalog/brands',
// 'brand/<alias:[A-Za-z0-9_-]+>' => 'catalog/brand',
|
8df80521
Alexander Karnovsky
not fixed commite
|
82
83
84
85
86
87
|
]
]
],
'params' => $params,
];
|