Blame view

frontend/views/catalog/product_item.php 3.31 KB
055ecc3b   Karnovsky A   Karnovsky 11052016
1
2
  <?php
  /** @var \common\modules\product\models\Product $product */
ccc7a9d3   Karnovsky A   Karnovsky 12052016
3
  use yii\helpers\Url;
055ecc3b   Karnovsky A   Karnovsky 11052016
4
  ?>
bd406ee6   Eugeny Galkovskiy   123
5
  <li class="item" itemscope itemtype="http://schema.org/Product">
ccc7a9d3   Karnovsky A   Karnovsky 12052016
6
7
      <div class="boxitem">
          <div class="pixbox">
c7852657   Karnovsky A   -
8
              <a href="<?= Url::to(['catalog/product', 'product' => $product,'#' => 'm' .$product->enabledVariants[0]->product_variant_id]) ?>">
d0108705   Dmytry Fedorchuk   All seo
9
10
11
                  <?= \common\components\artboximage\ArtboxImageHelper::getImage($product->enabledVariants[0]->imageUrl, 'list',['alt' => $product->category->categoryName->value . ' ' .
                      $product->fullname, 'title' => $product->category->categoryName->value . ' ' .
                      $product->fullname])?>
ccc7a9d3   Karnovsky A   Karnovsky 12052016
12
              </a>
055ecc3b   Karnovsky A   Karnovsky 11052016
13
          </div>
1bdd1646   Karnovsky A   -
14
15
16
          <?php if(!empty($product->is_top) || !empty($product->is_new) || !empty($product->akciya)) :?>
              <ul class="product-special">
                  <?php if(!empty($product->is_top)) :?>
66b994f6   Виталий   Веталь
17
                      <li class="top"><div>top</div></li>
1bdd1646   Karnovsky A   -
18
19
                  <?php endif?>
                  <?php if(!empty($product->is_new)) :?>
66b994f6   Виталий   Веталь
20
                      <li class="new"><div>new</div></li>
1bdd1646   Karnovsky A   -
21
22
                  <?php endif?>
                  <?php if(!empty($product->akciya)) :?>
66b994f6   Виталий   Веталь
23
                      <li class="promo"><div>promo</div></li>
1bdd1646   Karnovsky A   -
24
25
26
                  <?php endif?>
              </ul>
          <?php endif?>
bd406ee6   Eugeny Galkovskiy   123
27
          <div itemprop="name"><a href="<?= Url::to([
ccc7a9d3   Karnovsky A   Karnovsky 12052016
28
              'catalog/product',
e6ace78f   Administrator   image size
29
              'product' => $product,
c7852657   Karnovsky A   -
30
              '#' => 'm' .$product->enabledVariants[0]->product_variant_id])
46fea629   Administrator   image size
31
32
          ?>"
             class="name"><?= $product->fullname ?>
bd406ee6   Eugeny Galkovskiy   123
33
          </a></div>
ccc7a9d3   Karnovsky A   Karnovsky 12052016
34
35
36
  
          <?php
  
bd406ee6   Eugeny Galkovskiy   123
37
          echo '<div class="cost-block" itemprop="offers" itemscope itemtype="http://schema.org/Offer">';
7aeecbdc   Виталий   Веталь
38
          echo '<p class="cost">';
ccc7a9d3   Karnovsky A   Karnovsky 12052016
39
          // есть скидка
c7852657   Karnovsky A   -
40
          if ($product->enabledVariants[0]->price_old != 0 && $product->enabledVariants[0]->price_old != $product->enabledVariants[0]->price)
ccc7a9d3   Karnovsky A   Karnovsky 12052016
41
          {
bd406ee6   Eugeny Galkovskiy   123
42
              echo '<strike><span id=\'old_cost\' itemprop="price">'.$product->enabledVariants[0]->price_old.'</span> грн.</strike>&nbsp;';
ccc7a9d3   Karnovsky A   Karnovsky 12052016
43
44
          }
  
c7852657   Karnovsky A   -
45
          echo $product->enabledVariants[0]->price.' <span>грн.</span></p>';
bd406ee6   Eugeny Galkovskiy   123
46
          echo '<meta itemprop="priceCurrency" content = "UAH">';
ccc7a9d3   Karnovsky A   Karnovsky 12052016
47
48
49
50
51
52
          echo '</div>';
  
          ?>
      </div>
      <a href="<?= Url::to([
          'catalog/product',
0025dc65   Administrator   image size
53
          'product' => $product,
c7852657   Karnovsky A   -
54
          '#' => 'm' .$product->enabledVariants[0]->product_variant_id])
ccc7a9d3   Karnovsky A   Karnovsky 12052016
55
56
57
58
      ?>" class="link_buy">Купить</a>
  
      <div class="mycarousel">
          <ul class="jcarousel jcarousel-skin-tango">
1e55b4b8   Karnovsky A   -
59
              <?php foreach ($product->enabledVariants as $variant) : ?>
d8d0c38c   Administrator   add active menu
60
                  <?php if (!empty($variant->image)) :?>
ccc7a9d3   Karnovsky A   Karnovsky 12052016
61
                  <li>
4902c747   Karnovsky A   -
62
63
64
65
                      <a href="<?= Url::to([
                          'catalog/product',
                          'product' => $product,
                          '#' => 'm' . $variant->product_variant_id]) ?>">
d0108705   Dmytry Fedorchuk   All seo
66
67
68
                          <?= \common\components\artboximage\ArtboxImageHelper::getImage($variant->imageUrl, 'product_variant',['alt' => $product->category->categoryName->value . ' ' .
                              $product->fullname, 'title' => $product->category->categoryName->value . ' ' .
                              $product->fullname])?>
ccc7a9d3   Karnovsky A   Karnovsky 12052016
69
70
                      </a>
                  </li>
d8d0c38c   Administrator   add active menu
71
                  <?php endif; ?>
ccc7a9d3   Karnovsky A   Karnovsky 12052016
72
73
74
75
              <?php endforeach; ?>
          </ul>
      </div>
  </li>