d8c1a2e0
Yarik
Big commit artbox
|
1
|
<?php
|
00731fef
Yarik
Before vitex test
|
2
3
4
|
use common\modules\product\models\Category;
use common\modules\product\models\Product;
|
4e55ce81
Yarik
Another one admin...
|
5
6
|
use common\modules\product\models\ProductVariant;
use common\modules\rubrication\models\TaxGroup;
|
00731fef
Yarik
Before vitex test
|
7
8
9
10
11
12
|
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
use yii\web\View;
use yii\widgets\DetailView;
/**
|
4e55ce81
Yarik
Another one admin...
|
13
14
15
16
17
|
* @var View $this
* @var Product $model
* @var Category[] $categories
* @var TaxGroup[] $properties
* @var ProductVariant[] $variants
|
00731fef
Yarik
Before vitex test
|
18
19
20
21
22
23
24
25
|
*/
$this->title = $model->lang->name;
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('product', 'Products'),
'url' => [ 'index' ],
];
$this->params[ 'breadcrumbs' ][] = $this->title;
|
4e55ce81
Yarik
Another one admin...
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
$properties_string = '';
foreach($properties as $property) {
$property_list = '';
foreach($property->options as $option) {
$property_list .= Html::tag('li', $option->lang->value);
}
$properties_string .= Html::tag('p', $property->lang->name) . Html::tag('ul', $property_list);
}
$variants_string = '';
foreach($variants as $variant) {
$variants_string .= Html::a($variant->lang->name, [
'/product/variant/view',
'id' => $variant->product_variant_id,
]) . '<br>';
}
|
d8c1a2e0
Yarik
Big commit artbox
|
41
42
|
?>
<div class="product-view">
|
00731fef
Yarik
Before vitex test
|
43
|
|
d8c1a2e0
Yarik
Big commit artbox
|
44
|
<h1><?= Html::encode($this->title) ?></h1>
|
00731fef
Yarik
Before vitex test
|
45
|
|
d8c1a2e0
Yarik
Big commit artbox
|
46
|
<p>
|
00731fef
Yarik
Before vitex test
|
47
48
49
50
51
52
53
54
|
<?= Html::a(Yii::t('product', 'Update'), [
'update',
'id' => $model->product_id,
], [ 'class' => 'btn btn-primary' ]) ?>
<?= Html::a(Yii::t('product', 'Delete'), [
'delete',
'id' => $model->product_id,
], [
|
d8c1a2e0
Yarik
Big commit artbox
|
55
|
'class' => 'btn btn-danger',
|
00731fef
Yarik
Before vitex test
|
56
|
'data' => [
|
d8c1a2e0
Yarik
Big commit artbox
|
57
|
'confirm' => Yii::t('product', 'Are you sure you want to delete this item?'),
|
00731fef
Yarik
Before vitex test
|
58
|
'method' => 'post',
|
d8c1a2e0
Yarik
Big commit artbox
|
59
60
|
],
]) ?>
|
4e55ce81
Yarik
Another one admin...
|
61
62
63
64
|
<?= Html::a(Yii::t('product', 'Variants'), [
'/product/variant/index',
'product_id' => $model->product_id,
], [ 'class' => 'btn btn-info' ]) ?>
|
d8c1a2e0
Yarik
Big commit artbox
|
65
|
</p>
|
00731fef
Yarik
Before vitex test
|
66
|
|
d8c1a2e0
Yarik
Big commit artbox
|
67
|
<?= DetailView::widget([
|
00731fef
Yarik
Before vitex test
|
68
|
'model' => $model,
|
d8c1a2e0
Yarik
Big commit artbox
|
69
70
|
'attributes' => [
'product_id',
|
00731fef
Yarik
Before vitex test
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
'brand.lang.name',
[
'label' => \Yii::t('app', 'Categories'),
'value' => implode('<br>', ArrayHelper::getColumn($categories, 'lang.name')),
'format' => 'html',
],
[
'attribute' => 'is_top',
'value' => $model->is_top ? Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-ok' ]) : Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-remove' ]),
'format' => 'html',
],
[
'attribute' => 'is_new',
'value' => $model->is_new ? Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-ok' ]) : Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-remove' ]),
'format' => 'html',
],
[
'attribute' => 'akciya',
'value' => $model->akciya ? Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-ok' ]) : Html::tag('span', '', [ 'class' => 'glyphicon glyphicon-remove' ]),
'format' => 'html',
],
[
'attribute' => 'video',
|
4e55ce81
Yarik
Another one admin...
|
94
95
96
97
98
99
100
101
102
103
|
'format' => 'html',
],
[
'label' => \Yii::t('app', 'Properties'),
'value' => $properties_string,
'format' => 'html',
],
[
'label' => \Yii::t('app', 'Variants'),
'value' => $variants_string,
|
00731fef
Yarik
Before vitex test
|
104
105
|
'format' => 'html',
],
|
4e55ce81
Yarik
Another one admin...
|
106
|
'lang.description:html',
|
00731fef
Yarik
Before vitex test
|
107
|
'image.imageUrl:image',
|
d8c1a2e0
Yarik
Big commit artbox
|
108
109
110
111
|
],
]) ?>
</div>
|