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