config.php 478 B

1234567891011121314151617181920
  1. <?php
  2. class DeviceConfig
  3. {
  4. // third party modules can change the options based on this
  5. // the allowed values are: "nano" or "tetra"
  6. const DEVICE_TYPE = 'tetra';
  7. const USE_INTERNAL_STORAGE = true;
  8. const USE_USB_STORAGE = true;
  9. const SHOW_FIREWALL_CONFIG = true;
  10. // third party modules do not have this flag implemented
  11. const SHOW_SCAN_TYPE = true;
  12. // hide wlan0 in getClientInterfaces() enumeration
  13. const HIDE_WLAN0_CLIENT = true;
  14. }