12345678910111213141516171819202122232425262728293031 |
- <?php
- define('SLASH',DIRECTORY_SEPARATOR);
- define('__ROOT__',dirname(__FILE__).SLASH);
- define('TIME_ZONE','Europe/Paris');
- define('ENTITY_PREFIX', '');
- define('LOG_PATH',__ROOT__.'log');
- define('FILE_PATH','file'.SLASH);
- define('PLUGIN_PATH','plugin'.SLASH);
- define('LIB_PATH',__ROOT__.'lib'.SLASH);
- define('AVATAR_PATH','avatar'.SLASH);
- define('BASE_SGBD','Mysql');
- define('BASE_HOST','localhost');
- define('BASE_NAME','erp-core');
- define('BASE_LOGIN','root');
- define('BASE_PASSWORD','root');
- define('ROOT_URL','http://127.0.0.1/hackpoint');
- define('CRYPTKEY','MTU0MjM1MjQyOXJvb3QyNzY=');
- define('BASE_DEBUG',true);
- define('COOKIE_NAME','erp-core-coockie');
- define('PROGRAM_NAME','Hackpoint');
- define('PROGRAM_UID','idleman/erp-core');
- define('PROGRAM_TECHNICIAN','valentin.carruesco');
- define('SOURCE_VERSION','1.0');
- define('BASE_VERSION','1.0');
- ?>
|