| 1234567891011121314151617181920 |
- <?php
- class DeviceConfig
- {
- // third party modules can change the options based on this
- // the allowed values are: "nano" or "tetra"
- const DEVICE_TYPE = 'nano';
- const USE_INTERNAL_STORAGE = false;
- const USE_USB_STORAGE = true;
- const SHOW_FIREWALL_CONFIG = false;
- // third party modules do not have this flag implemented
- const SHOW_SCAN_TYPE = false;
- // hide wlan0 in getClientInterfaces() enumeration
- const HIDE_WLAN0_CLIENT = true;
- }
|