config-test-mymodel.php 795 B

123456789101112131415161718192021222324252627282930313233343536
  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' => 'itop',
  12. 'db_pwd' => '1T0p',
  13. 'db_name' => 'TestBizModelGenericItop',
  14. 'db_subname' => 'tribute2itop', // 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/business_test.class.inc.php'
  23. // to be continued...
  24. ),
  25. 'addons' => array (
  26. // other modules to come later
  27. )
  28. );
  29. ?>