08ee790c
Alexey Boroda
-Views fail rolle...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* @var Product $product
*/
use common\modules\product\models\Product;
use yii\helpers\Html;
use yii\helpers\Url;
?>
<div class="catalog_item">
<div class="wrapper">
<div class="item_container">
|
9a6f4934
Виталий
-collection
|
14
|
<div class="img">
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<a href="<?=Url::to([
'catalog/product',
'product' => $product->alias,
])?>">
<?= \common\components\artboximage\ArtboxImageHelper::getImage(
$product->imageUrl,
'list',
[
'alt' => $product->name,
'title' => $product->name,
'class' => 'selected',
'itemprop' => 'image',
]
) ?>
</a>
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
30
|
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
31
|
</div>
|
9a6f4934
Виталий
-collection
|
32
|
|
c17fb8de
Виталий
-collection
|
33
|
<div class="style title">
|
9a6f4934
Виталий
-collection
|
34
35
36
37
38
39
40
41
|
<?= Html::a($product->name,
[
'catalog/product',
'product' => $product->alias,
]
) ?>
</div>
|
b9cfef38
Виталий
-collection
|
42
43
44
45
46
47
48
49
50
|
<div class="style in_stock_wr">
<div class="in_stock_">
<span class="yes_stock">есть на складе</span>
</div>
<div class="title-sku">
<span>Код: <?=$product->variant->sku?></span>
</div>
</div>
|
c17fb8de
Виталий
-collection
|
51
|
<div class="style price">
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
52
|
<div class="dlexfduinxipi">
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
53
54
55
56
57
58
|
<span class="main"> <?php
echo \Yii::$app->formatter->asDecimal($product->variant->price);
?> <span class="currency">грн</span>
</span>
</div>
</div>
|
93a47fdf
Виталий
-collection
|
59
|
<div class="style info_icons">
|
1aaf0ddf
Виталий
-collection
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<a href="#" class="btn btnBuy buy_button" data-id="<?php echo $product->variant->product_variant_id; ?>" data-toggle="modal" data-target="#buyForm" lang="5893">Купить</a>
<?php /*
<ul class="ul wishlike_block">
<li class="compare">
<a onclick="add2compare(); return false;" class="compare compare_text_link_5893" lang="5893" href="#">К сравнению</a>
<span class="icon"></span>
</li>
<li class="like">
<a class="like like_text_link_5893" lang="5893" href="#">В избранное</a><span class="icon"></span>
</li>
</ul>
*/ ?>
</div>
|
c17fb8de
Виталий
-collection
|
75
76
77
|
<!-- <div class="additional_info params">-->
<!-- </div>-->
<!-- <div class="opacity_bg"></div>-->
|
08ee790c
Alexey Boroda
-Views fail rolle...
|
78
79
80
|
</div>
</div>
</div>
|