| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\Enums;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 11.09.19
- * Time: 15:13
- * Class ProductConfig
- */
- class ProductParams
- {
- const ACCOUNT_LIMIT = 'acc_limit';
- const ACCOUNT_SIZE = 'acc_size';
- const ACCOUNT_BASE = 'acc_base';
- const SIZE_UNLIMITED = '-1';
- const KERIO_PREFIX_SETTINGS = 'kerio';
- const ALIAS_LIMIT = 'alias_limit';
- const DOMAIN_ALIAS_LIMIT = 'domain_alias_limit';
- const DOMAIN_LIST_LIMIT = 'dist_list_limit';
- const DOMAIN_MAX_SIZE = 'domainMaxSize';
- const DOMAIN_BASE_SIZE = 'domainBaseSize';
- const SWITCHER_ENABLED = 'on';
- const SWITCHER_DISABLED = 'off';
- }
|