diff options
author | martian <martian@ampache> | 2010-02-09 17:44:44 +0000 |
---|---|---|
committer | martian <martian@ampache> | 2010-02-09 17:44:44 +0000 |
commit | 1b35c20dd0a93b143d8b9542743a743e0db66386 (patch) | |
tree | 0500ae3eec1dfb70b66c3ca30e9a61da2c0daba8 /lib/class/config.class.php | |
parent | 5e52f0d7ccb6183d7e1b4e5033adad0d08a48eb6 (diff) | |
download | ampache-1b35c20dd0a93b143d8b9542743a743e0db66386.tar.gz ampache-1b35c20dd0a93b143d8b9542743a743e0db66386.tar.bz2 ampache-1b35c20dd0a93b143d8b9542743a743e0db66386.zip |
Adding the bandwidth option to the preferences. This changes the complexity of the UI and toggles album art.
Diffstat (limited to 'lib/class/config.class.php')
-rw-r--r-- | lib/class/config.class.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/class/config.class.php b/lib/class/config.class.php index d846f225..64a45522 100644 --- a/lib/class/config.class.php +++ b/lib/class/config.class.php @@ -28,6 +28,11 @@ * config overides and/or local configs (for like dba) * The class should be a static var in the other classes */ + +define('BANDWIDTH_LOW', 0); +define('BANDWIDTH_MEDIUM', 1); +define('BANDWIDTH_HIGH', 2); + class Config { // These are the settings for this specific class |