Blame view

common/modules/product/widgets/views/submenu.php 2.32 KB
8df80521   Alexander Karnovsky   not fixed commite
1
  <div class="menu_item">
6fa713ca   Karnovsky A   Catalog v 1.2
2
      <?= \yii\helpers\Html::a($rootCategory->categoryName->value, ['catalog/category', 'category' => $rootCategory], ['class' => 'submenu_button '. $rootClass])?>
8df80521   Alexander Karnovsky   not fixed commite
3
4
5
6
7
8
9
      <div class="submenu">
          <ul class="categories">
              <li class="sub_cat"><span>Популярные категории</span>
                  <?php if(!empty($populary)) :?>
                      <div class="sub_cat_content">
                          <div class="content_items">
                              <?php foreach($populary as $_item) :?>
6fa713ca   Karnovsky A   Catalog v 1.2
10
                                  <div class="content_item"><a href="<?= \yii\helpers\Url::to(['catalog/category', 'category' => $_item])?>">
b15fac82   Karnovsky A   No-photo for cate...
11
                                          <div valign="top" class="picture">
1b9687f3   Karnovsky A   All resizer
12
                                              <?= $_item->imageUrl ? \common\components\artboximage\ArtboxImageHelper::getImage($_item->imageUrl, 'mainmenu') : ''?>
b15fac82   Karnovsky A   No-photo for cate...
13
                                          </div>
14eadb86   Karnovsky A   Eager loading for...
14
                                          <div class="title"><?= $_item->categoryName->value?></div>
8df80521   Alexander Karnovsky   not fixed commite
15
16
17
18
19
20
21
22
                                      </a></div>
                              <?php endforeach?>
                          </div>
                      </div>
                  <?php endif?>
              </li>
          <?php foreach($items as $item) :?>
              <li class="sub_cat">
14eadb86   Karnovsky A   Eager loading for...
23
                  <span><?= $item['item']->categoryName->value?></span>
8df80521   Alexander Karnovsky   not fixed commite
24
25
26
27
                  <?php if(!empty($item['children'])) :?>
                  <div class="sub_cat_content">
                      <div class="content_items">
                          <?php foreach($item['children'] as $_item) :?>
6fa713ca   Karnovsky A   Catalog v 1.2
28
                          <div class="content_item"><a href="<?= \yii\helpers\Url::to(['catalog/category', 'category' => $_item['item']])?>">
b15fac82   Karnovsky A   No-photo for cate...
29
                              <div valign="top" class="picture">
1b9687f3   Karnovsky A   All resizer
30
                                  <?= $_item['item']->imageUrl ? \common\components\artboximage\ArtboxImageHelper::getImage($_item['item']->imageUrl, 'mainmenu') : ''?>
b15fac82   Karnovsky A   No-photo for cate...
31
                              </div>
14eadb86   Karnovsky A   Eager loading for...
32
                              <div class="title"><?= $_item['item']->categoryName->value?></div>
8df80521   Alexander Karnovsky   not fixed commite
33
34
35
36
37
38
                          </a></div>
                          <?php endforeach?>
                      </div>
                  </div>
                  <?php endif?>
              </li>
14eadb86   Karnovsky A   Eager loading for...
39
          <?php endforeach ?>
8df80521   Alexander Karnovsky   not fixed commite
40
41
42
          </ul>
      </div>
  </div>