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
|
?>
|
2f93d129
Karnovsky A
-
|
5
|
<li class="item">
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
6
7
|
<div class="boxitem">
<div class="pixbox">
|
c7852657
Karnovsky A
-
|
8
9
|
<a href="<?= Url::to(['catalog/product', 'product' => $product,'#' => 'm' .$product->enabledVariants[0]->product_variant_id]) ?>">
<?= \common\components\artboximage\ArtboxImageHelper::getImage($product->enabledVariants[0]->imageUrl, 'list')?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
10
|
</a>
|
055ecc3b
Karnovsky A
Karnovsky 11052016
|
11
|
</div>
|
1bdd1646
Karnovsky A
-
|
12
13
14
|
<?php if(!empty($product->is_top) || !empty($product->is_new) || !empty($product->akciya)) :?>
<ul class="product-special">
<?php if(!empty($product->is_top)) :?>
|
66b994f6
Виталий
Веталь
|
15
|
<li class="top"><div>top</div></li>
|
1bdd1646
Karnovsky A
-
|
16
17
|
<?php endif?>
<?php if(!empty($product->is_new)) :?>
|
66b994f6
Виталий
Веталь
|
18
|
<li class="new"><div>new</div></li>
|
1bdd1646
Karnovsky A
-
|
19
20
|
<?php endif?>
<?php if(!empty($product->akciya)) :?>
|
66b994f6
Виталий
Веталь
|
21
|
<li class="promo"><div>promo</div></li>
|
1bdd1646
Karnovsky A
-
|
22
23
24
|
<?php endif?>
</ul>
<?php endif?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
25
26
|
<a href="<?= Url::to([
'catalog/product',
|
e6ace78f
Administrator
image size
|
27
|
'product' => $product,
|
c7852657
Karnovsky A
-
|
28
|
'#' => 'm' .$product->enabledVariants[0]->product_variant_id])
|
46fea629
Administrator
image size
|
29
30
|
?>"
class="name"><?= $product->fullname ?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
31
32
33
34
35
|
</a>
<?php
echo '<div class="cost-block">';
|
7aeecbdc
Виталий
Веталь
|
36
|
echo '<p class="cost">';
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
37
|
// есть скидка
|
c7852657
Karnovsky A
-
|
38
|
if ($product->enabledVariants[0]->price_old != 0 && $product->enabledVariants[0]->price_old != $product->enabledVariants[0]->price)
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
39
|
{
|
c7852657
Karnovsky A
-
|
40
|
echo '<strike><span id=\'old_cost\'>'.$product->enabledVariants[0]->price_old.'</span> грн.</strike> ';
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
41
42
|
}
|
c7852657
Karnovsky A
-
|
43
|
echo $product->enabledVariants[0]->price.' <span>грн.</span></p>';
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
44
45
46
47
48
49
50
|
echo '</div>';
?>
</div>
<a href="<?= Url::to([
'catalog/product',
|
0025dc65
Administrator
image size
|
51
|
'product' => $product,
|
c7852657
Karnovsky A
-
|
52
|
'#' => 'm' .$product->enabledVariants[0]->product_variant_id])
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
53
54
55
56
|
?>" class="link_buy">Купить</a>
<div class="mycarousel">
<ul class="jcarousel jcarousel-skin-tango">
|
1e55b4b8
Karnovsky A
-
|
57
|
<?php foreach ($product->enabledVariants as $variant) : ?>
|
d8d0c38c
Administrator
add active menu
|
58
|
<?php if (!empty($variant->image)) :?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
59
|
<li>
|
4902c747
Karnovsky A
-
|
60
61
62
63
|
<a href="<?= Url::to([
'catalog/product',
'product' => $product,
'#' => 'm' . $variant->product_variant_id]) ?>">
|
83be3cfb
Karnovsky A
-
|
64
|
<?= \common\components\artboximage\ArtboxImageHelper::getImage($variant->imageUrl, 'product_variant')?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
65
66
|
</a>
</li>
|
d8d0c38c
Administrator
add active menu
|
67
|
<?php endif; ?>
|
ccc7a9d3
Karnovsky A
Karnovsky 12052016
|
68
69
70
71
|
<?php endforeach; ?>
</ul>
</div>
</li>
|