configs.example.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. $config['App'] = array(
  3. 'warnAboutNamedParams' => false,
  4. 'disableMobileDetection' => false
  5. );
  6. $config['DataPreparation'] = array(
  7. 'noTrim' => false,
  8. 'disableMobileDetection' => false
  9. );
  10. $config['Passwordable'] = array(
  11. 'authType' => ''
  12. );
  13. $config['Reset'] = array(
  14. );
  15. $config['Qlogin'] = array(
  16. );
  17. $config['Mobile'] = array(
  18. );
  19. $config['Weather'] = array(
  20. );
  21. $config['UrlCache'] = array(
  22. );
  23. $config['Mail'] = array(
  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'] = array(
  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'] = array(
  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'] = array(
  53. 'paramType' => 'querystring'
  54. );
  55. $config['Common'] = array(
  56. 'messages' => true
  57. );
  58. $config['Typography'] = array(
  59. 'locale' => ''
  60. );
  61. $config['Currency'] = array(
  62. 'code' => 'USD',
  63. 'symbolLeft' => '',
  64. 'symbolRight' => '$',
  65. 'places' => '2',
  66. 'thousands' => ',',
  67. 'decimals' => '.',
  68. );
  69. $config['Localization'] = array(
  70. 'addressFormat' => 'en',
  71. 'thousands' => ',',
  72. 'decimals' => '.',
  73. );
  74. $config['LocalizationPattern'] = array(
  75. );
  76. $config['AutoLogin'] = array(
  77. );
  78. $config['Validation'] = array(
  79. 'browserAutoRequire' => false,
  80. );
  81. $config['Country'] = array(
  82. 'imagePath' => 'Data./img/country_flags/',
  83. );
  84. $config['Select'] = array(
  85. 'defaultBefore' => ' -[ ',
  86. 'defaultAfter' => ' ]- ',
  87. 'naBefore' => ' -- ',
  88. 'naAfter' => ' -- '
  89. );
  90. $config['Cli'] = array(
  91. 'dos2unixPath' => ''
  92. );