| Conditions | 1 |
| Paths | 1 |
| Total Lines | 22 |
| 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' => ['@request/view', 'id' => $this->model->id], |
||
| 26 | ], |
||
| 27 | 'delete' => [ |
||
| 28 | 'label' => Yii::t('hipanel', 'Delete'), |
||
| 29 | 'icon' => 'fa-trash-o', |
||
| 30 | 'url' => ['@request/delete', 'id' => $this->model->id], |
||
| 31 | 'linkOptions' => [ |
||
| 32 | 'data' => [ |
||
| 33 | 'confirm' => Yii::t('hipanel', 'Are you sure you want to delete this item?'), |
||
| 34 | 'method' => 'post', |
||
| 35 | 'pjax' => '0', |
||
| 36 | ], |
||
| 37 | ], |
||
| 38 | ], |
||
| 39 | ]; |
||
| 40 | } |
||
| 41 | } |
||
| 42 |