configs.example.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. $config['App'] = [
  3. 'warnAboutNamedParams' => false,
  4. 'disableMobileDetection' => false
  5. ];
  6. $config['DataPreparation'] = [
  7. 'noTrim' => false,
  8. 'disableMobileDetection' => false
  9. ];
  10. $config['Passwordable'] = [
  11. 'authType' => ''
  12. ];
  13. $config['Reset'] = [
  14. ];
  15. $config['Qlogin'] = [
  16. ];
  17. $config['Mobile'] = [
  18. ];
  19. $config['Weather'] = [
  20. ];
  21. $config['UrlCache'] = [
  22. ];
  23. $config['Mail'] = [
  24. 'debug' => 0, # 0=no,1=flashMessageAfterwards,2=fullDebug(noMailSent)
  25. 'log' => 1,
  26. 'useSmtp' => 1,
  27. 'smtpPort' => 25,
  28. 'smtpTimeout' => 20,
  29. 'smtpHost' => '',
  30. 'smtpUsername' => '',
  31. 'smtpPassword' => '',
  32. ];
  33. $config['Google'] = [
  34. 'key' => '',
  35. 'api' => '2.x',
  36. 'zoom' => 6,
  37. 'lat' => 51,
  38. 'lng' => 11,
  39. 'type' => 'G_NORMAL_MAP',
  40. 'static_size' => '500x500'
  41. ];
  42. $config['Config'] = [
  43. 'language' => 'en',
  44. 'adminName' => 'Site Owner',
  45. 'adminEmail' => 'test@test.de',
  46. 'noReplyEmail' => 'noreply@test.de',
  47. 'noReplyEmailname' => '',
  48. 'keywords' => '',
  49. 'description' => '',
  50. 'pwd' => ''
  51. ];
  52. $config['Paginator'] = [
  53. 'paramType' => 'querystring'
  54. ];
  55. $config['Common'] = [
  56. 'messages' => true
  57. ];
  58. $config['Typography'] = [
  59. 'locale' => ''
  60. ];
  61. $config['Currency'] = [
  62. 'code' => 'USD',
  63. 'symbolLeft' => '',
  64. 'symbolRight' => '$',
  65. 'places' => '2',
  66. 'thousands' => ',',
  67. 'decimals' => '.',
  68. ];
  69. $config['Localization'] = [
  70. 'addressFormat' => 'en',
  71. 'thousands' => ',',
  72. 'decimals' => '.',
  73. ];
  74. $config['LocalizationPattern'] = [
  75. ];
  76. $config['AutoLogin'] = [
  77. ];
  78. $config['Validation'] = [
  79. 'browserAutoRequire' => false,
  80. ];
  81. $config['Country'] = [
  82. 'imagePath' => 'Data./img/country_flags/',
  83. ];
  84. $config['Select'] = [
  85. 'defaultBefore' => ' -[ ',
  86. 'defaultAfter' => ' ]- ',
  87. 'naBefore' => ' -- ',
  88. 'naAfter' => ' -- '
  89. ];
  90. $config['Cli'] = [
  91. 'dos2unixPath' => ''
  92. ];