price.php
1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
use yii\helpers\Url;
use yii\helpers\Html;
use yii\grid\GridView;
use yii\widgets\Breadcrumbs;
$this->title = 'Пожелания';
$this->registerMetaTag(['name' => 'description', 'content' => 'Пожелания']);
$this->registerMetaTag(['name' => 'keywords', 'content' => 'Пожелания']);
?>
<h1>Пожелания</h1>
<hr />
<?= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
[
'attribute' => 'id',
'value'=>'id',
'contentOptions'=>['style'=>'width: 70px;']
],
[
'attribute' => 'date_time',
'value'=>'date_time',
'contentOptions'=>['style'=>'width: 150px;']
],
[
'attribute' => 'product_name',
'value'=>function($data){
return (!empty($data->product->name))?Html::a($data->product->name, ['products/show','translit_rubric'=>$data->product->catalog->translit,'translit'=>$data->product->translit,'id'=>$data->product->id]):'Этот товар удален с сайта';
},
'format'=>'raw',
],
],
]) ?>