Blame view

frontend/views/catalog/products.php 3.41 KB
b89bd6a3   Alexey Boroda   26.09.16 filters ...
1
2
3
4
5
6
7
  <?php
  
  /**
   * @var ActiveDataProvider $dataProvider
   * @var View $this
   * @var ActiveDataProvider $productsProvider
   * @var Category $category
6fb4a732   Alexey Boroda   Changes:
8
9
   * @var Category[] $stockProgram
   * @var Category[] $onOrder
b89bd6a3   Alexey Boroda   26.09.16 filters ...
10
11
12
   */
  use common\modules\product\models\Category;
  use yii\data\ActiveDataProvider;
6fb4a732   Alexey Boroda   Changes:
13
  use yii\helpers\Url;
b89bd6a3   Alexey Boroda   26.09.16 filters ...
14
15
16
17
18
19
20
  use yii\web\View;
  use yii\widgets\ListView;
  use frontend\widgets\FilterWidget;
  $this->title = $category->first_text;
  $this->params['breadcrumbs'][] = $this->title;
  
  ?>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
21
22
  <div class="col-md-12">
      <div class="col-md-3 filters">
987739f1   Alexey Boroda   -Simple spoiler
23
24
25
          <div class="button1"><a href="<?php
              echo Url::to(['/discount']);
              ?>" class="punkt">Акции / Скидки</a></div>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
26
27
28
29
30
          <div class="filters_block">
              <div class="button2">
                  <a href="#" class="punkt">Складская программа</a>
                  <div class="spoiler">
                      <ul>
6fb4a732   Alexey Boroda   Changes:
31
32
33
34
35
36
37
38
39
40
                          <?php
                          foreach ($stockProgram as $brand) {
                          ?>
                          <li><a href="<?php
                              echo Url::to([
                                  'category/brand',
                                  'id' => $brand->category_id,
                              ]);
                              ?>"><?php echo $brand->name;?> <span>/ <?php echo $brand->meta_desc;?></span></a></li>
                          <?php } ?>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
41
42
43
44
45
46
47
                      </ul>
                  </div>
              </div>
              <div class="button2">
                  <a href="#" class="punkt">Под заказ</a>
                  <div class="spoiler">
                      <ul>
6fb4a732   Alexey Boroda   Changes:
48
49
50
51
52
53
54
55
56
57
                          <?php
                          foreach ($onOrder as $brand) {
                              ?>
                              <li><a href="<?php
                                  echo Url::to([
                                      'category/brand',
                                      'id' => $brand->category_id,
                                  ]);
                                  ?>"><?php echo $brand->name;?> <span>/ <?php echo $brand->meta_desc;?></span></a></li>
                          <?php } ?>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
58
59
60
61
                      </ul>
                  </div>
              </div>
              <div class="title">Фильтры</div>
d08b44b4   Alexey Boroda   -Find by sku
62
63
64
              <form method="post" action="/site/sku">
              <div><input name="sku" type="text" placeholder="Артикул"></div>
              </form>
4556b430   Alexey Boroda   Changes:
65
66
67
68
69
              <?= FilterWidget::widget([
                  'category'=>$category,
                  'groups'=>  $groups,
                  'filter'=>  $filter,
              ])?>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
          </div>
      </div>
      <div class="col-md-9">
          <div class="blocks_2">
  
              <?php echo ListView::widget([
                  'dataProvider' => $productsProvider,
                  'itemView' => '_product_list',
                  'layout' => '{items}{pager}',
              ])?>
  
          </div>
      </div>
  </div>
  <div class="textile_bottom">
      <div class="title1 left">Стильные элитные обои для вашего дома.</div>
987739f1   Alexey Boroda   -Simple spoiler
86
87
88
89
90
91
      <div class="simple-spoiler just-closed" style="height: 50px">
          <div class="spoiler-inner">Продумывая дизайн своей квартиры, мы непременно тщательно выбираем «одежду» для стен — красивые модные обои.</div>
      </div>
      <div class="just-more">
          <a href="#">Узнать больше</a>
      </div>
b89bd6a3   Alexey Boroda   26.09.16 filters ...
92
93
  </div>
  <div style="clear:both;"></div>