2021-11-25 21:36:21 +00:00
|
|
|
<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
|
2019-03-28 21:44:06 +00:00
|
|
|
|
2022-02-18 16:15:43 +00:00
|
|
|
// LIBREQR SETTINGS
|
2019-03-28 21:44:06 +00:00
|
|
|
|
2022-02-18 16:15:43 +00:00
|
|
|
// Theme's directory name
|
|
|
|
define("THEME", "contrast");
|
2019-03-28 21:44:06 +00:00
|
|
|
|
2022-02-18 16:15:43 +00:00
|
|
|
// Language used if those requested by the user are not available
|
|
|
|
define("DEFAULT_LOCALE", "en");
|
2019-08-13 19:17:08 +00:00
|
|
|
|
2022-02-18 16:15:43 +00:00
|
|
|
// Will be printed at the bottom of the interface
|
|
|
|
define("CUSTOM_TEXT_ENABLED", false);
|
|
|
|
define("CUSTOM_TEXT", "This LibreQR instance is hosted by <a href='https://foo.example/'>foo</a>.");
|
2019-03-17 15:03:43 +00:00
|
|
|
|
2022-02-18 16:15:43 +00:00
|
|
|
// Default values
|
|
|
|
define("DEFAULT_REDUNDANCY", "high");
|
|
|
|
define("DEFAULT_MARGIN", NULL);
|
|
|
|
define("DEFAULT_SIZE", NULL);
|
|
|
|
define("DEFAULT_BGCOLOR", "FFFFFF");
|
|
|
|
define("DEFAULT_MAINCOLOR", "000000");
|