index.php
2.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
use common\models\FlowIntensity;
use yii\helpers\Html;
use yii\grid\GridView;
/* @var $this yii\web\View */
/* @var $searchModel common\models\FlowIntensitySearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Інтенсивність руху та склад транспортного потоку';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="flow-intensity-index">
<h1><?= Html::encode($this->title) ?></h1>
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
<p>
<?= Html::a('Додати', ['create'], ['class' => 'btn btn-success']) ?>
</p>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => null,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'attribute' => 'road_id',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return $model->road->name;
}
],
[
'attribute' => 'region_id',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return $model->region->name;
}
],
[
'attribute' => 'location',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return $model->getLocationString();
}
],
[
'attribute' => 'road_direction_id',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return $model->roadDirection->direction_name;
}
],
[
'attribute' => 'settlement_id',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return $model->settlement->sign;
}
],
[
'attribute' => 'date_add',
'value' => function($model) {
/**
* @var FlowIntensity $model
*/
return date('d.m.Y', $model->date_add);
}
],
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
</div>