constant.php 857 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. define('SLASH',DIRECTORY_SEPARATOR);
  3. define('__ROOT__',dirname(__FILE__).SLASH);
  4. define('TIME_ZONE','Europe/Paris');
  5. define('ENTITY_PREFIX', '');
  6. define('LOG_PATH',__ROOT__.'log');
  7. define('FILE_PATH','file'.SLASH);
  8. define('PLUGIN_PATH','plugin'.SLASH);
  9. define('LIB_PATH',__ROOT__.'lib'.SLASH);
  10. define('AVATAR_PATH','avatar'.SLASH);
  11. define('BASE_SGBD','Mysql');
  12. define('BASE_HOST','localhost');
  13. define('BASE_NAME','erp-core');
  14. define('BASE_LOGIN','root');
  15. define('BASE_PASSWORD','root');
  16. define('ROOT_URL','http://127.0.0.1/hackpoint');
  17. define('CRYPTKEY','MTU0MjM1MjQyOXJvb3QyNzY=');
  18. define('BASE_DEBUG',true);
  19. define('COOKIE_NAME','erp-core-coockie');
  20. define('PROGRAM_NAME','Hackpoint');
  21. define('PROGRAM_UID','idleman/erp-core');
  22. define('PROGRAM_TECHNICIAN','valentin.carruesco');
  23. define('SOURCE_VERSION','1.0');
  24. define('BASE_VERSION','1.0');
  25. ?>