1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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);
- global $databases_credentials;
- $databases_credentials = array(
- 'local' => array(
- 'connector' => '{{connector}}',
- 'host' => '{{host}}',
- 'name' => '{{name}}',
- 'login' => '{{login}}',
- 'password' => '{{password}}',
- ),
- // 'db2' => array(
- // 'connector' => 'Oracle',
- // 'name' => 'my ODBC name',
- // 'login' => 'login',
- // 'password' => 'password',
- // )
- );
- define('ROOT_URL','{{root}}');
- define('CRYPTKEY','{{cryptKey}}');
- //logs toutes les requetes sans formattage
- define('BASE_DEBUG',false);
- define('COOKIE_NAME','erp-core-cookie');
- define('PROGRAM_NAME','Hackpoint');
- define('PROGRAM_UID','idleman/hackpoint');
- define('PROGRAM_AUTHOR','SYS1');
- define('PROGRAM_TECHNICIAN','valentin.carruesco');
- //Windows
- define('REFERENCE_URL','https://idleman/action.php?action=reference_save_project');
- //Linux
- // define('REFERENCE_URL',''https://idleman/action.php/action.php?action=reference_save_project');
- define('SOURCE_VERSION','1.0');
- define('BASE_VERSION','1.0');
- //define('CACHE_API',true); //permet une simulation de l'utilisation de l'api hors ligne
- ?>
|