app.default.php 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. $config = [
  3. // Controller pagination
  4. 'Paginator' => [
  5. ],
  6. // Error handling around 404s
  7. 'Log' => [
  8. 'debug' => [
  9. 'scopes' => null,
  10. ],
  11. 'error' => [
  12. 'scopes' => null,
  13. ],
  14. '404' => [
  15. 'file' => '404',
  16. 'levels' => ['error'],
  17. 'scopes' => ['404'],
  18. ],
  19. ],
  20. // Controller pagination
  21. 'DataPreparation' => [
  22. 'noTrim' => false,
  23. ],
  24. // Behaviors
  25. 'Passwordable' => [
  26. ],
  27. 'Reset' => [
  28. ],
  29. 'Slugged' => [
  30. ],
  31. // Email
  32. 'Config' => [
  33. 'systemEmail' => '',
  34. 'systemName' => '',
  35. 'adminEmail' => '',
  36. 'adminName' => '',
  37. 'xMailer' => '',
  38. 'live' => false,
  39. ],
  40. // Helpers
  41. 'Format' => [
  42. 'templates' => [],
  43. ],
  44. 'Google' => [
  45. ],
  46. 'Icon' => [
  47. 'checkExistence' => false,
  48. 'sets' => [],
  49. 'map' => [],
  50. ],
  51. ];