Blame view

frontend/views/category/collection.php 2.27 KB
4ca21c3e   Alexey Boroda   first commit
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
  <?php
  /**
   * @var Product[][] $products
   * @var View $this
   * @var Category $category
   */
  use common\components\artboximage\ArtboxImageHelper;
  use common\modules\product\models\Category;
  use common\modules\product\models\Product;
  use yii\web\View;
  use yii\helpers\Url;
  
  $this->title = $category->name;
  $this->params['breadcrumbs'][] = [
      'label' => $category->parent->parent->name,
      'url' => Url::to([
          'category/index',
          'id' => $category->parent->parent->category_id,
      ]),
  ];
  $this->params['breadcrumbs'][] = [
      'label' => $category->parent->name,
      'url' => Url::to([
          'category/brand',
          'id' => $category->parent->category_id,
      ]),
  ];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  
  <div class="col-md-12">
      <div class="collection">
          <div class="head">
              <img src="<?php
              echo $category->getBrandImageUrl();
              ?>">
          </div>
          <div class="titles">
              <div class="line1"><?php echo $category->name; ?></div>
              <div class="line2"><?php echo $category->first_text; ?></div>
          </div>
          <p><?php echo $category->meta_desc; ?></p>
          <div class="cols">
              <?php
              foreach ($products as $products_col) {
              ?>
              <div class="col-md-4 col-sm-4 col1">
                  <?php
                  foreach ($products_col as $product) {
                  ?>
                  <a href="<?php echo Url::to([
4556b430   Alexey Boroda   Changes:
52
53
54
                      'catalog/product',
                      'product' => $product->alias,
                      'variant' => $product->variant->sku,
4ca21c3e   Alexey Boroda   first commit
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
                  ]); ?>" alt="nabuco">
                      <div class="label"><span><?php echo $product->name; ?></span><?php
                          echo $product->variant->sku;
                          ?></div>
                      <?php echo ArtboxImageHelper::getImage($product->getImageUrl(), 'collections_thumb');?>
                  </a>
                  <?php } ?>
              </div>
              <?php } ?>
              <div style="clear:both;"></div>
          </div>
          <div class="down">
              <p>sdfdsfsdf</p>
              <div class="spoiler"><p><?php echo $category->seo_text; ?></p></div>
              <div class="more"><a href="#">Узнать больше</a></div>
          </div>
      </div>
  </div>