Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function items() |
||
13 | { |
||
14 | return [ |
||
15 | 'view' => [ |
||
16 | 'label' => Yii::t('hipanel', 'View'), |
||
17 | 'icon' => 'fa-info', |
||
18 | 'url' => ['@service/view', 'id' => $this->model->id], |
||
19 | ], |
||
20 | [ |
||
21 | 'label' => Yii::t('hipanel', 'Update'), |
||
22 | 'icon' => 'fa-pencil', |
||
23 | 'url' => ['@service/update', 'id' => $this->model->id], |
||
24 | 'visible' => Yii::$app->user->can('admin'), |
||
25 | ], |
||
26 | ]; |
||
27 | } |
||
28 | } |
||
29 |