| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace MGModule\DNSManager2\models\custom\package\setting;
- use MGModule\DNSManager2\mgLibs\custom;
- class PackageSettingEnum extends custom\BasicEnumAbstract {
- const DEFAULT_RECORD_SET = 'default_record_set';
- const MODULE_CONFIGURATION = 'module_configuration';
- const OWN_ZONES_PER_ITEM = 'own_zones_per_item';
- const ENABLE_RDNS = 'enable_rdns';
- const ALLOW_MULTIPLE_PTR = 'allow_multiple_ptr';
- const ZONE_AUTOMATION_NEW_ITEM = 'zone_automation_new_item';
- const UPDATE_EXISTED_ZONE = 'update_existed_zone';
- const ZONE_AUTOMATION_PENDING_TRANSFER_DOMAIN = 'zone_automation_pending_transfer_domain';
- const ZONE_AUTOMATION_PENDING_TRANSFER_DOMAIN_TIME = 'zone_automation_pending_transfer_domain_time';
- const ZONE_AUTOMATION_PENDING_REGISTRATION_DOMAIN = 'zone_automation_pending_registration_domain';
- const ZONE_AUTOMATION_PENDING_REGISTRATION_DOMAIN_TIME = 'zone_automation_pending_registration_domain_time';
- const ZONE_AUTOMATION_DOMAIN_WITH_DNS_MANAGEMENT = 'zone_automation_domain_with_dns_management';
- const ALLOWED_RECORD_TYPES = 'allowed_record_types';
- const DEFAULT_TTL = 'default_ttl';
- const DNS_RECORD_SET = 'dns_record_set';
- const CLIENT_CAN_USE_SETS = 'client_can_use_sets';
- const CLIENT_NOTIFICATION_ZONE_CREATED = 'client_notification_zone_created';
- const CLIENT_NOTIFICATION_ZONE_ALTERED = 'client_notification_zone_altered';
- const CLIENT_NOTIFICATION_ZONE_REMOVED = 'client_notification_zone_removed';
- const ADMIN_NOTIFICATION_CRON_SYNCHRONIZATOR = 'admin_notification_cron_synchronizator';
- const ADMIN_NOTIFICATION_CRON_MIGRATOR = 'admin_notification_cron_migrator';
- const ADMIN_NOTIFICATION_CRON_CLEANER = 'admin_notification_cron_cleaner';
- const ALLOWED_IPS = 'allowed_ips';
- const IP_BLACKLIST = 'ip_blacklist';
- const APPLY_BLACKLIST_TO_RECORDS = 'records_allowed_ip';
- const APPLY_ALLOWED_IP_TO_RECORDS = 'records_blacklist';
- }
|