1 | <?php |
||
15 | class DomainServicePrice extends Price |
||
16 | { |
||
17 | const SERVICE_OPERATION_PURCHASE = 'feature,premium_dns_purchase'; |
||
18 | const SERVICE_OPERATION_RENEW = 'feature,premium_dns_renew'; |
||
19 | |||
20 | public static function tableName() |
||
24 | |||
25 | public function rules() |
||
33 | |||
34 | /** |
||
35 | * @return array available operations |
||
36 | */ |
||
37 | public static function getOperations(): array |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public static function getLabel(): string |
||
52 | } |
||
53 |