Blame view

common/modules/product/widgets/views/product_smart.php 2.16 KB
4253cbec   root   first commit
1
  <?php
c93ce871   Administrator   big commti
2
3
4
5
  /**
   * @var $product  common\modules\product\models\Product
   */
  use yii\helpers\Html;
4253cbec   root   first commit
6
7
  use yii\helpers\Url;
  ?>
bff65579   Виталий   test commit
8
  <div class="catalog_item home_slider_it">
c93ce871   Administrator   big commti
9
      <div class="wrapper">
bff65579   Виталий   test commit
10
11
          <div class="status_block-wr">
              <div class="staus_new"></div>
10b789ee   Administrator   big commti
12
  
bff65579   Виталий   test commit
13
          </div>
c93ce871   Administrator   big commti
14
15
          <div class="item_container" >
              <input class="prodInfo" type="hidden" value="[]">
2cbb3bdc   Виталий   test commit
16
  
c93ce871   Administrator   big commti
17
18
19
20
21
22
              <div class="img">
                  <a class="btn-product-details" href="<?= Url::to([
                      'catalog/product',
                      'product' => $product->alias
                  ]) ?>">
                      <?= \common\components\artboximage\ArtboxImageHelper::getImage($product->enabledVariants[ 0 ]->imageUrl, 'list', [
2cbb3bdc   Виталий   test commit
23
24
                          'alt'   => $product->fullname . ' ' . $product->category->name,
                          'title' => $product->fullname . ' ' . $product->category->name,
c93ce871   Administrator   big commti
25
26
27
                          'class' => 'selected'
                      ]) ?>
                  </a>
c93ce871   Administrator   big commti
28
              </div>
4253cbec   root   first commit
29
  
2cbb3bdc   Виталий   test commit
30
31
32
33
34
35
36
37
38
              <div class="style short-desc_wr">
                  <div class="style title-name_">
                      <a href="<?= Url::to([
                          'catalog/product',
                          'product' => $product->alias
                      ]) ?>" title="<?= $product->fullname . ' ' . $product->category->name ?>">
                          <p><span><?= $product->fullname ?></span></p>
                          <p><span><?= $product->category->name ?></span></p>
                      </a>
c93ce871   Administrator   big commti
39
  
2cbb3bdc   Виталий   test commit
40
41
42
43
                  </div>
                  <div class="style in_stock_wr">
                      <div class="in_stock_">
                          <span class="yes_stock">есть на складе</span>
10b789ee   Administrator   big commti
44
  
2cbb3bdc   Виталий   test commit
45
46
47
                      </div>
                      <div class="title-sku">
                          <span>Код: <?=$product->variant->sku?></span>
c93ce871   Administrator   big commti
48
                      </div>
c93ce871   Administrator   big commti
49
                  </div>
c93ce871   Administrator   big commti
50
  
2cbb3bdc   Виталий   test commit
51
52
                  <div class="style price-basket-wr">
                      <span class="currency_price"><?= $product->variant->price ?> грн</span>
10b789ee   Administrator   big commti
53
  <!--                    <div class="price-basket"><a class="" href="#"></a></div>-->
c93ce871   Administrator   big commti
54
55
                  </div>
              </div>
2cbb3bdc   Виталий   test commit
56
  
10b789ee   Administrator   big commti
57
  
2cbb3bdc   Виталий   test commit
58
  
c93ce871   Administrator   big commti
59
          </div>
4253cbec   root   first commit
60
61
      </div>
  </div>