|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Finance module for HiPanel |
|
4
|
|
|
* |
|
5
|
|
|
* @link https://github.com/hiqdev/hipanel-module-finance |
|
6
|
|
|
* @package hipanel-module-finance |
|
7
|
|
|
* @license BSD-3-Clause |
|
8
|
|
|
* @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/) |
|
9
|
|
|
*/ |
|
10
|
|
|
|
|
11
|
|
|
namespace hipanel\modules\finance\grid; |
|
12
|
|
|
|
|
13
|
|
|
use hipanel\grid\BoxedGridView; |
|
14
|
|
|
use hipanel\modules\finance\menus\ProfileActionsMenu; |
|
15
|
|
|
use hipanel\modules\finance\models\Tariff; |
|
16
|
|
|
use hipanel\modules\finance\models\TariffProfile; |
|
17
|
|
|
use hiqdev\yii2\menus\grid\MenuColumn; |
|
18
|
|
|
use Yii; |
|
19
|
|
|
use yii\helpers\Html; |
|
20
|
|
|
|
|
21
|
|
|
class TariffProfileGridView extends BoxedGridView |
|
22
|
|
|
{ |
|
23
|
|
|
public function columns() |
|
24
|
|
|
{ |
|
25
|
|
|
return array_merge(parent::columns(), [ |
|
26
|
|
|
'name' => [ |
|
27
|
|
|
'class' => 'hipanel\grid\MainColumn', |
|
28
|
|
|
'filterAttribute' => 'name_like', |
|
29
|
|
|
'note' => null, |
|
30
|
|
|
'value' => function (TariffProfile $model) { |
|
31
|
|
|
if (empty($model->name) || $model->isDefault()) { |
|
|
|
|
|
|
32
|
|
|
return Yii::t('hipanel.finance.tariffprofile', 'Default'); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
return $model->name; |
|
|
|
|
|
|
36
|
|
|
}, |
|
37
|
|
|
], |
|
38
|
|
|
'tariff_names' => [ |
|
39
|
|
|
'filter' => false, |
|
40
|
|
|
'format' => 'raw', |
|
41
|
|
|
'value' => function (TariffProfile $model) { |
|
42
|
|
|
if (empty($model->tariffs)) { |
|
|
|
|
|
|
43
|
|
|
return ''; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
foreach ($model->tariffs as $type => $values) { |
|
|
|
|
|
|
47
|
|
|
if (empty($values)) { |
|
48
|
|
|
continue; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
$links = []; |
|
52
|
|
|
foreach ($values as $id => $name) { |
|
53
|
|
|
$links[$id] = $this->tariffLink($id, $name); |
|
54
|
|
|
} |
|
55
|
|
|
$tariffs[$type] = $model->getAttributeLabel($type) . ': ' . implode(', ', $links); |
|
|
|
|
|
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
return implode('<br>', $tariffs); |
|
|
|
|
|
|
59
|
|
|
}, |
|
60
|
|
|
], |
|
61
|
|
|
'domain_tariff' => [ |
|
62
|
|
|
'attribute' => 'domain', |
|
63
|
|
|
'format' => 'raw', |
|
64
|
|
View Code Duplication |
'value' => function (TariffProfile $model) { |
|
|
|
|
|
|
65
|
|
|
if (empty($model->domain)) { |
|
|
|
|
|
|
66
|
|
|
return ''; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
return $this->tariffLink($model->domain, $model->tariff_names[$model->domain]); |
|
|
|
|
|
|
70
|
|
|
}, |
|
71
|
|
|
], |
|
72
|
|
|
'certificate_tariff' => [ |
|
73
|
|
|
'attribute' => 'certificate', |
|
74
|
|
|
'format' => 'raw', |
|
75
|
|
View Code Duplication |
'value' => function (TariffProfile $model) { |
|
|
|
|
|
|
76
|
|
|
if (empty($model->certificate)) { |
|
|
|
|
|
|
77
|
|
|
return ''; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
return $this->tariffLink($model->certificate, $model->tariff_names[$model->certificate]); |
|
|
|
|
|
|
81
|
|
|
}, |
|
82
|
|
|
], |
|
83
|
|
|
'svds_tariff' => [ |
|
84
|
|
|
'attribute' => 'svds', |
|
85
|
|
|
'format' => 'raw', |
|
86
|
|
View Code Duplication |
'value' => function (TariffProfile $model) { |
|
|
|
|
|
|
87
|
|
|
if (empty($model->tariffs)) { |
|
|
|
|
|
|
88
|
|
|
return ''; |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
if (empty($model->tariffs[Tariff::TYPE_XEN])) { |
|
|
|
|
|
|
92
|
|
|
return ''; |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
foreach ($model->tariffs[Tariff::TYPE_XEN] as $id => $name) { |
|
|
|
|
|
|
96
|
|
|
$links[$id] = $this->tariffLink($id, $name); |
|
|
|
|
|
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
return implode(', ', $links); |
|
|
|
|
|
|
100
|
|
|
}, |
|
101
|
|
|
], |
|
102
|
|
|
'ovds_tariff' => [ |
|
103
|
|
|
'attribute' => 'ovds', |
|
104
|
|
|
'format' => 'raw', |
|
105
|
|
View Code Duplication |
'value' => function (TariffProfile $model) { |
|
|
|
|
|
|
106
|
|
|
if (empty($model->tariffs)) { |
|
|
|
|
|
|
107
|
|
|
return ''; |
|
108
|
|
|
} |
|
109
|
|
|
|
|
110
|
|
|
if (empty($model->tariffs[Tariff::TYPE_OPENVZ])) { |
|
|
|
|
|
|
111
|
|
|
return ''; |
|
112
|
|
|
} |
|
113
|
|
|
|
|
114
|
|
|
foreach ($model->tariffs[Tariff::TYPE_OPENVZ] as $id => $name) { |
|
|
|
|
|
|
115
|
|
|
$links[$id] = $this->tariffLink($id, $name); |
|
|
|
|
|
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
return implode(', ', $links); |
|
|
|
|
|
|
119
|
|
|
}, |
|
120
|
|
|
], |
|
121
|
|
|
'server_tariff' => [ |
|
122
|
|
|
'attribute' => 'server', |
|
123
|
|
|
'format' => 'raw', |
|
124
|
|
View Code Duplication |
'value' => function (TariffProfile $model) { |
|
|
|
|
|
|
125
|
|
|
if (empty($model->tariffs)) { |
|
|
|
|
|
|
126
|
|
|
return ''; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
if (empty($model->tariffs[Tariff::TYPE_SERVER])) { |
|
|
|
|
|
|
130
|
|
|
return ''; |
|
131
|
|
|
} |
|
132
|
|
|
|
|
133
|
|
|
foreach ($model->tariffs[Tariff::TYPE_SERVER] as $id => $name) { |
|
|
|
|
|
|
134
|
|
|
$links[$id] = $this->tariffLink($id, $name); |
|
|
|
|
|
|
135
|
|
|
} |
|
136
|
|
|
|
|
137
|
|
|
return implode(', ', $links); |
|
|
|
|
|
|
138
|
|
|
}, |
|
139
|
|
|
], |
|
140
|
|
|
'actions' => [ |
|
141
|
|
|
'class' => MenuColumn::class, |
|
142
|
|
|
'menuClass' => ProfileActionsMenu::class, |
|
143
|
|
|
], |
|
144
|
|
|
]); |
|
145
|
|
|
} |
|
146
|
|
|
|
|
147
|
|
|
protected function tariffLink($id, $name) |
|
148
|
|
|
{ |
|
149
|
|
|
return Html::a($name, ['@plan/view', 'id' => $id]); |
|
150
|
|
|
} |
|
151
|
|
|
} |
|
152
|
|
|
|
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.