20 lines
No EOL
643 B
PHP
Executable file
20 lines
No EOL
643 B
PHP
Executable file
<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
|
|
|
|
// LIBREQR SETTINGS
|
|
|
|
// Theme's directory name
|
|
define("THEME", "libreqr");
|
|
|
|
// Language used if those requested by the user are not available
|
|
define("DEFAULT_LOCALE", "en");
|
|
|
|
// Will be printed at the bottom of the interface
|
|
define("CUSTOM_TEXT_ENABLED", "true");
|
|
define("CUSTOM_TEXT", "nibbleqr is hosted by <a href='https://nibblegap.com/'>nibblegap.com</a>.");
|
|
|
|
// Default values
|
|
define("DEFAULT_REDUNDANCY", "high");
|
|
define("DEFAULT_MARGIN", 2);
|
|
define("DEFAULT_SIZE", 100);
|
|
define("DEFAULT_BGCOLOR", "FFFFFF");
|
|
define("DEFAULT_FGCOLOR", "000000"); |