| Conditions | 4 |
| Paths | 8 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function items() |
||
| 21 | { |
||
| 22 | return [ |
||
| 23 | [ |
||
| 24 | 'label' => Yii::t('hipanel', 'View'), |
||
| 25 | 'icon' => 'fa-info', |
||
| 26 | 'url' => ['@ticket/view', 'id' => $this->model->id], |
||
| 27 | ], |
||
| 28 | [ |
||
| 29 | 'label' => $this->model->state === Thread::STATE_OPEN ? Yii::t('hipanel:ticket', 'Close') : Yii::t('hipanel:ticket', 'Open'), |
||
| 30 | 'icon' => $this->model->state === Thread::STATE_OPEN ? 'fa-times' : 'fa-envelope-open-o', |
||
| 31 | 'url' => $this->model->state === Thread::STATE_OPEN ? ['@ticket/close', 'id' => $this->model->id] : ['@ticket/open', 'id' => $this->model->id], |
||
| 32 | ], |
||
| 33 | ]; |
||
| 34 | } |
||
| 35 | } |
||
| 36 |