ProductParams.php 803 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\Enums;
  3. /**
  4. *
  5. * Created by PhpStorm.
  6. * User: ThurData
  7. * Date: 11.09.19
  8. * Time: 15:13
  9. * Class ProductConfig
  10. */
  11. class ProductParams
  12. {
  13. const ACCOUNT_LIMIT = 'acc_limit';
  14. const ACCOUNT_SIZE = 'acc_size';
  15. const ACCOUNT_BASE = 'acc_base';
  16. const SIZE_UNLIMITED = '-1';
  17. const KERIO_PREFIX_SETTINGS = 'kerio';
  18. const ALIAS_LIMIT = 'alias_limit';
  19. const DOMAIN_ALIAS_LIMIT = 'domain_alias_limit';
  20. const DOMAIN_LIST_LIMIT = 'dist_list_limit';
  21. const DOMAIN_MAX_SIZE = 'domainMaxSize';
  22. const DOMAIN_BASE_SIZE = 'domainBaseSize';
  23. const SWITCHER_ENABLED = 'on';
  24. const SWITCHER_DISABLED = 'off';
  25. }