| 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 | [ |
||
| 23 | 'label' => Yii::t('hipanel', 'Update'), |
||
| 24 | 'icon' => 'fa-pencil', |
||
| 25 | 'url' => ['@ticket/template/update', 'id' => $this->model->id], |
||
| 26 | ], |
||
| 27 | [ |
||
| 28 | 'label' => Yii::t('hipanel', 'Delete'), |
||
| 29 | 'icon' => 'fa-trash', |
||
| 30 | 'url' => ['@ticket/template/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 |