libreqr/config.inc.php

21 lines
645 B
PHP
Raw Permalink Normal View History

<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
2019-03-28 22:44:06 +01:00
// LIBREQR SETTINGS
2019-03-28 22:44:06 +01:00
// Theme's directory name
2022-02-25 13:10:43 +01:00
define("THEME", "libreqr");
2019-03-28 22:44:06 +01:00
// Language used if those requested by the user are not available
define("DEFAULT_LOCALE", "en");
2019-08-13 21:17:08 +02: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>.");
// Default values
define("DEFAULT_REDUNDANCY", "high");
define("DEFAULT_MARGIN", 20);
define("DEFAULT_SIZE", 300);
define("DEFAULT_BGCOLOR", "FFFFFF");
2022-05-31 16:09:33 +02:00
define("DEFAULT_FGCOLOR", "000000");