SōkoMan byl pokrten
[mirrors/SokoMan.git] / sklad.conf.php.example
1 <?php
2 define('DB_USER', 'user');
3 define('DB_PASS', 'pass');
4 define('DB_NAME', 'store');
5 define('DB_HOST', 'localhost');
6 define('DB_DSN', 'mysql:host='.DB_HOST.';dbname='.DB_NAME);
7
8 define('DIR_HOME', '.');
9 define('DIR_LIB', DIR_HOME.'/lib');
10 define('DIR_IMAGES', DIR_HOME.'/images');
11 define('DIR_LOCALE', DIR_HOME.'/locale');
12 define('DIR_BARCODES', DIR_HOME.'/barcodes');
13 define('DIR_TEMPLATES', DIR_HOME.'/templates');
14 define('DIR_ASSISTANTS', DIR_HOME.'/assistants');
15
16 define('URL_HOME', dirname($_SERVER['SCRIPT_NAME']));
17 define('URL_IMAGES', URL_HOME.'/images');
18 define('URL_BARCODES', URL_HOME.'/barcodes');
19
20 define('LOCALE_LANG', 'en');
21
22 define('INSTANCE_ID', '');
23
24 define('BARCODE_TYPE', 'code128b');
25 define('BARCODE_PREFIX', 'STORE/');
26
27 $fake_lms_users = array( //You can specify multiple users in this array
28 DB_USER => DB_PASS
29 );
This page took 0.268596 seconds and 5 git commands to generate.