| Conditions | 1 |
| Paths | 1 |
| Total Lines | 22 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function items() |
||
| 12 | { |
||
| 13 | return [ |
||
| 14 | [ |
||
| 15 | 'label' => Yii::t('hipanel:hosting', 'Shared'), |
||
| 16 | ], |
||
| 17 | [ |
||
| 18 | 'label' => Yii::t('hipanel:hosting', 'Free'), |
||
| 19 | 'color' => '#AAFFAA', |
||
| 20 | ], |
||
| 21 | [ |
||
| 22 | 'label' => Yii::t('hipanel:hosting', 'Dedicated'), |
||
| 23 | 'color' => '#CCCCFF', |
||
| 24 | ], |
||
| 25 | [ |
||
| 26 | 'label' => Yii::t('hipanel:hosting', 'System'), |
||
| 27 | ], |
||
| 28 | [ |
||
| 29 | 'label' => Yii::t('hipanel:hosting', 'Blocked'), |
||
| 30 | ], |
||
| 31 | ]; |
||
| 32 | } |
||
| 33 | } |
||
| 34 |