Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

65 řádky
2.0 KiB
PHP

<?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Whether to show debugging data in output.
// DO NOT SET TO TRUE IN PRODUCTION!!!
define("DEBUG", false);
// Database connection settings
// See http://medoo.in/api/new for info
define("DB_TYPE", "mysql");
define("DB_NAME", "nickelbox");
define("DB_SERVER", "localhost");
define("DB_USER", "nickelbox");
define("DB_PASS", "");
define("DB_CHARSET", "utf8");
// BinStack database connection settings
define("BINSTACK_DB_TYPE", "mysql");
define("BINSTACK_DB_NAME", "inventory");
define("BINSTACK_DB_SERVER", "localhost");
define("BINSTACK_DB_USER", "inventory");
define("BINSTACK_DB_PASS", "");
define("BINSTACK_DB_CHARSET", "utf8");
// Absolute path to image.php in the BinStack installation folder
// Required for item images to load
define("BINSTACK_URL_IMAGEPHP", "/binstack/image.php");
// Name of the app.
define("SITE_TITLE", "NickelBox");
// If there are this many or fewer items,
// load the POS grid view automatically
define("GRID_BY_DEFAULT_MAX_ITEMS", 20);
// URL of the AccountHub API endpoint
define("PORTAL_API", "http://localhost/accounthub/api.php");
// URL of the AccountHub home page
define("PORTAL_URL", "http://localhost/accounthub/home.php");
// AccountHub API Key
define("PORTAL_KEY", "123");
// For supported values, see http://php.net/manual/en/timezones.php
define("TIMEZONE", "America/Denver");
define("DATETIME_FORMAT", "M j Y g:i A"); // 12 hour time
#define("DATETIME_FORMAT", "M j Y G:i"); // 24 hour time
// Base URL for site links.
define('URL', '.');
// Use Captcheck on login screen
// https://captcheck.netsyms.com
define("CAPTCHA_ENABLED", FALSE);
define('CAPTCHA_SERVER', 'https://captcheck.netsyms.com');
// See lang folder for language options
define('LANGUAGE', "en_us");
define("FOOTER_TEXT", "");
define("COPYRIGHT_NAME", "Netsyms Technologies");