| 1 | <?php |
||
| 7 | class BillType extends Type |
||
| 8 | { |
||
| 9 | public $defaultValues = [ |
||
| 10 | 'success' => [ |
||
| 11 | 'deposit,*', |
||
| 12 | 'monthly,*', |
||
| 13 | ], |
||
| 14 | 'info' => [ |
||
| 15 | 'overuse,*', |
||
| 16 | ], |
||
| 17 | 'warning' => [ |
||
| 18 | 'monthly,monthly', |
||
| 19 | 'exchange,*' |
||
| 20 | ], |
||
| 21 | 'primary' => [ |
||
| 22 | 'monthly,leasing', |
||
| 23 | ], |
||
| 24 | 'default' => [ |
||
| 25 | 'monthly,hardware', |
||
| 26 | 'correction,*', |
||
| 27 | ], |
||
| 28 | ]; |
||
| 29 | public $field = 'type'; |
||
| 30 | public $i18nDictionary = 'hipanel:finance'; |
||
| 31 | |||
| 32 | /** {@inheritdoc} */ |
||
| 33 | protected function titlelize($label): string |
||
| 37 | } |
||
| 38 | |||
| 40 |