products.php
4.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
* @var $productProvider \yii\data\ActiveDataProvider
* @var View $this
* @var ArrayDataProvider $productProvider
*/
use frontend\widgets\FilterWidget;
use frontend\widgets\Seo;
use yii\data\ArrayDataProvider;
use yii\helpers\Url;
use yii\web\View;
use yii\widgets\ListView;
use yii\widgets\Pjax;
$this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.css'));
$this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.skinHTML5.css'));
$this->registerJsFile(Yii::getAlias('@web/js/ion.rangeSlider.js'),[
'position' => View::POS_END,
'depends' => ['yii\web\JqueryAsset']
]);
$this->params['seo']['title'] = !empty($category->meta_title) ? $category->meta_title : $category->name;
$this->params['seo']['fields']['meta-title'] = $category->meta_title;
$this->params['seo']['h1'] = !empty($category->h1) ? $category->h1 : $category->name;
$this->params['seo']['seo_text'] = $category->seo_text;
$this->params['seo']['description'] = $category->meta_desc;
if(empty($productProvider->allModels)){
$this->params['seo']['meta'] = 'noindex,nofollow';
}else{
$this->params['seo']['meta'] = $category->meta_robots;
}
$this->params['seo']['category_name'] = $category->name;
$this->params['breadcrumbs'][] = $category->name;
$this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.css'));
$this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.skinHTML5.css'));
$this->registerJsFile(Yii::getAlias('@web/js/ion.rangeSlider.js'),[
'position' => View::POS_END,
'depends' => ['yii\web\JqueryAsset']
]);
$this->registerJsFile(Yii::getAlias('@web/js/filter.js'),[
'position' => View::POS_END,
'depends' => ['yii\web\JqueryAsset']
]);
?>
<?php Pjax::begin(['timeout' => 5000,'id'=> 'list-container'])?>
<div class="container">
<div class="block-25" style="position: relative;">
<?= FilterWidget::widget([
'category'=>$category,
'groups'=> $groups,
'filter'=> $filter,
'priceLimits' => $priceLimits,
//'filterBrands' => $filterBrands
])?>
<div class="clearfix"></div>
<div class="columnLeftInfo">
<!-- del_columnLeftInfo -->
<!-- del_columnLeftInfo_end -->
</div>
<div class="clearfix"></div>
<!----------------- Banner ventolux ------------------->
<div style="width: 95%; overflow: hidden; margin-top: 10px;" >
<a rel="nofollow" href="http://ventolux.ua/" target="_blank"><img style="width: 100%;" src="/storage/banner/ventolux1.jpg" alt="ventolux" /></a>
</div>
</div>
<div class="block-75">
<h1 class="title"><?= Seo::widget([ 'row'=>'h1'])?></h1>
<div class="list_filters_links">
<div class="sort_block">
<span>Сортировка:</span>
<?= \yii\widgets\LinkSorter::widget([
'sort' => $productProvider->sort,
'attributes' => [
'price',
]
]);
?>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
<div class="catalog_product_list view_table">
<?= ListView::widget([
'dataProvider' => $productProvider,
'itemView' => function ($model, $key, $index, $widget) use($category) {
return $this->render('_product_item',[
'model' => $model,
'category' => $category,
]);
},
'layout' => "{items}<div class=\"clearfix\"></div>{pager}",
])
?>
<div class="clearfix"></div>
</div>
</div>
</div>
<?php Pjax::end()?>