Guest User

Untitled

a guest
Aug 31st, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. [bootstrap]
  2. autoloaderNamespaces[] = "Mod_"
  3. autoloaderNamespaces[] = "DH_"
  4. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  5. bootstrap.class = "Bootstrap"
  6.  
  7. [production : bootstrap]
  8. phpSettings.display_startup_errors = 1
  9. phpSettings.display_errors = 1
  10. phpSettings.short_open_tag = 1
  11. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  12. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  13. resources.frontController.plugins.layout = Mod_Controller_Plugin_Layout
  14. resources.modules[] =
  15. resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
  16. resources.layout.layout = default
  17.  
  18. ;Management micro modules
  19. management.resources.layout.layout = management
  20. category.resources.layout.layout = management
  21. officehierarchy.resources.layout.layout = management
  22. office.resources.layout.layout = management
  23. officedefault.resources.layout.layout = management
  24. officecommonview.resources.layout.layout = management
  25. funder.resources.layout.layout = management
  26. fundercommonview.resources.layout.layout = management
  27. funderdetails.resources.layout.layout = management
  28. product.resources.layout.layout = management
  29. productcommonview.resources.layout.layout = management
  30. roles.resources.layout.layout = management
  31. fundings.resources.layout.layout = management
  32. fundingscommonview.resources.layout.layout = management
  33. ledger.resources.layout.layout = management
  34.  
  35.  
  36. ;Membership micro modules
  37. membership.resources.layout.layout = membership
  38. groupm.resources.layout.layout = membership
  39. groupmdefault.resources.layout.layout = membership
  40. groupmcommonview.resources.layout.layout = membership
  41.  
  42. individualm.resources.layout.layout = membership
  43. individualmcommonview.resources.layout.layout = membership
  44. individualdefault.resources.layout.layout = membership
  45. familydetails.resources.layout.layout = membership
  46. ;commonmodule
  47. address.resources.layout.layout = commonmodule
  48. contactdetails.resources.layout.layout = commonmodule
  49. ;accounting
  50. accounting.resources.layout.layout = accounting
  51. savingaccount.resources.layout.layout = accounting
  52. loanaccount.resources.layout.layout = accounting
  53. fixedaccount.resources.layout.layout = accounting
  54. recurringaccount.resources.layout.layout = accounting
  55. ;transaction
  56. transaction.resources.layout.layout = transaction
  57. ;loan transaction
  58. loandisbursmentg.resources.layout.layout = transaction
  59. loanrepaymentg.resources.layout.layout = transaction
  60. loandetailsg.resources.layout.layout = transaction
  61. ;saving transaction
  62. savingswithdrawal.resources.layout.layout = transaction
  63. savingsdeposit.resources.layout.layout = transaction
  64. psdetails.resources.layout.layout = transaction
  65. ; fixed and recurring transaction
  66. fixedtransaction.resources.layout.layout = transactiong
  67. recurringtransaction.resources.layout.layout = transactiong
  68. ;Meeting micro modules
  69. meetingmain.resources.layout.layout = meetingmain
  70. meetingindex.resources.layout.layout = meetingmain
  71. meeting.resources.layout.layout = meetingmain
  72. meetingcommonview.resources.layout.layout = meetingmain
  73. attendanceindex.resources.layout.layout = meetingmain
  74. attendance.resources.layout.layout = meetingmain
  75. attendancecommonview.resources.layout.layout = meetingmain
  76. ; settings
  77. settings.resources.layout.layout = settings
  78.  
  79. resources.view[] =
  80. resources.view.helperPath.App_View_Helper = APPLICATION_PATH "/views/helpers"
  81. [staging : production]
  82.  
  83. [testing : production]
  84. phpSettings.display_startup_errors = 1
  85. phpSettings.display_errors = 1
  86.  
  87. [development : production]
  88. phpSettings.display_startup_errors = 1
  89. phpSettings.display_errors = 1
  90. resources.db.adapter = PDO_MYSQL
  91. resources.db.params.host = localhost
  92. resources.db.params.username = idf
  93. resources.db.params.password = 1Df123#
  94. resources.db.params.dbname = idf
  95. resources.db.params.charset = utf8
  96. resources.db.isDefaultTableAdapter = true
Add Comment
Please, Sign In to add comment