ProductParams.php 958 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace ModulesGarden\Servers\KerioEmail\App\Enums;
  3. /**
  4. *
  5. * Created by PhpStorm.
  6. * User: Tomasz Bielecki ( tomasz.bi@modulesgarden.com )
  7. * Date: 11.09.19
  8. * Time: 15:13
  9. * Class ProductConfig
  10. */
  11. class ProductParams
  12. {
  13. const CLASS_OF_SERVICE_NAME = 'cos_name';
  14. const FILTER_ACCOUNT_BY_COS = 'filterAccountsByCOS';
  15. const ACCOUNT_LIMIT = 'acc_limit';
  16. const ACCOUNT_SIZE = 'acc_size';
  17. const ACCOUNT_BASE = 'acc_base';
  18. const SIZE_UNLIMITED = '-1';
  19. const ZIMBRA_PREFIX_SETTINGS = 'kerio';
  20. const ALIAS_LIMIT = 'alias_limit';
  21. const DOMAIN_ALIAS_LIMIT = 'domain_alias_limit';
  22. const DOMAIN_LIST_LIMIT = 'dist_list_limit';
  23. const DOMAIN_MAX_SIZE = 'domainMaxSize';
  24. const DOMAIN_BASE_SIZE = 'domainBaseSize';
  25. const SWITCHER_ENABLED = 'on';
  26. const SWITCHER_DISABLED = 'off';
  27. }