config-test-farm.php 876 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. //
  3. // phpMyORM configuration file
  4. //
  5. // To be manually edited (or generated by the configuration wizard)
  6. //
  7. // The file is used in MetaModel::LoadConfig() which does all the necessary initialization job
  8. //
  9. $MySettings = array(
  10. 'db_host' => 'localhost',
  11. 'db_user' => 'RomainDBLogin',
  12. 'db_pwd' => '',
  13. 'db_name' => 'TestFarm',
  14. 'db_subname' => '', // use it to differentiate two applications instances running on the same DB
  15. );
  16. // Modules: file names should be specified as a absolute paths
  17. $MyModules = array(
  18. 'application' => array (
  19. // to be continued...
  20. ),
  21. 'business' => array (
  22. '../business/test_farm.class.inc.php',
  23. // to be continued...
  24. ),
  25. 'addons' => array (
  26. //'user rights' => '/addons/userrights/userrightsnull.class.inc.php', // or userrightsmatrix.class.inc.php
  27. // other modules to come later
  28. )
  29. );
  30. ?>