ServerSettingEnum.php 495 B

1234567891011121314
  1. <?php
  2. namespace MGModule\DNSManager2\models\custom\server\setting;
  3. use MGModule\DNSManager2\mgLibs\custom;
  4. class ServerSettingEnum extends custom\BasicEnumAbstract {
  5. const MODULE_CONFIGURATION = 'module_configuration';
  6. const ALLOW_MULTIPLE_PTR = 'allow_multiple_ptr';
  7. const ALLOW_RDNS = 'allow_rdns';
  8. const ENABLE_CACHE = 'enable_cache';
  9. const ENABLE_DNSSEC = 'enable_dnssec';
  10. const OVERWRITE_SOA = 'overwrite_soa';
  11. const POPULATE_NS = 'populate_ns';
  12. }