PackageSettingEnum.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace MGModule\DNSManager2\models\custom\package\setting;
  3. use MGModule\DNSManager2\mgLibs\custom;
  4. class PackageSettingEnum extends custom\BasicEnumAbstract {
  5. const DEFAULT_RECORD_SET = 'default_record_set';
  6. const MODULE_CONFIGURATION = 'module_configuration';
  7. const OWN_ZONES_PER_ITEM = 'own_zones_per_item';
  8. const ENABLE_RDNS = 'enable_rdns';
  9. const ALLOW_MULTIPLE_PTR = 'allow_multiple_ptr';
  10. const ZONE_AUTOMATION_NEW_ITEM = 'zone_automation_new_item';
  11. const UPDATE_EXISTED_ZONE = 'update_existed_zone';
  12. const ZONE_AUTOMATION_PENDING_TRANSFER_DOMAIN = 'zone_automation_pending_transfer_domain';
  13. const ZONE_AUTOMATION_PENDING_TRANSFER_DOMAIN_TIME = 'zone_automation_pending_transfer_domain_time';
  14. const ZONE_AUTOMATION_PENDING_REGISTRATION_DOMAIN = 'zone_automation_pending_registration_domain';
  15. const ZONE_AUTOMATION_PENDING_REGISTRATION_DOMAIN_TIME = 'zone_automation_pending_registration_domain_time';
  16. const ZONE_AUTOMATION_DOMAIN_WITH_DNS_MANAGEMENT = 'zone_automation_domain_with_dns_management';
  17. const ALLOWED_RECORD_TYPES = 'allowed_record_types';
  18. const DEFAULT_TTL = 'default_ttl';
  19. const DNS_RECORD_SET = 'dns_record_set';
  20. const CLIENT_CAN_USE_SETS = 'client_can_use_sets';
  21. const CLIENT_NOTIFICATION_ZONE_CREATED = 'client_notification_zone_created';
  22. const CLIENT_NOTIFICATION_ZONE_ALTERED = 'client_notification_zone_altered';
  23. const CLIENT_NOTIFICATION_ZONE_REMOVED = 'client_notification_zone_removed';
  24. const ADMIN_NOTIFICATION_CRON_SYNCHRONIZATOR = 'admin_notification_cron_synchronizator';
  25. const ADMIN_NOTIFICATION_CRON_MIGRATOR = 'admin_notification_cron_migrator';
  26. const ADMIN_NOTIFICATION_CRON_CLEANER = 'admin_notification_cron_cleaner';
  27. const ALLOWED_IPS = 'allowed_ips';
  28. const IP_BLACKLIST = 'ip_blacklist';
  29. const APPLY_BLACKLIST_TO_RECORDS = 'records_allowed_ip';
  30. const APPLY_ALLOWED_IP_TO_RECORDS = 'records_blacklist';
  31. }