| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function items() |
||
| 21 | { |
||
| 22 | return [ |
||
| 23 | [ |
||
| 24 | 'label' => Yii::t('hipanel:ticket', 'You assigned'), |
||
| 25 | 'color' => '#98FB98', |
||
| 26 | 'rule' => $this->model->isUserAssigned(), |
||
| 27 | ], |
||
| 28 | [ |
||
| 29 | 'label' => Yii::t('hipanel:ticket', 'Priority'), |
||
| 30 | 'color' => '#F2DEDE', |
||
| 31 | 'rule' => $this->model->isHighPriority(), |
||
| 32 | ], |
||
| 33 | ]; |
||
| 34 | } |
||
| 35 | } |
||
| 36 |