priprava na templaty
[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_IMAGES', DIR_HOME.'/images');
10 define('DIR_TEMPLATES', DIR_HOME.'/templates');
11 define('DIR_ASSISTANTS', DIR_HOME.'/assistants');
12
13 define('URL_HOME', dirname($_SERVER['SCRIPT_NAME']));
14 define('URL_IMAGES', URL_HOME.'/images');
15
16 $fake_lms_users = array( //You can specify multiple users in this array
17 DB_USER => DB_PASS
18 );
This page took 0.286444 seconds and 5 git commands to generate.