app.default.php 545 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. $config = [
  3. // Controller pagination
  4. 'Paginator' => [
  5. ],
  6. // Controller pagination
  7. 'DataPreparation' => [
  8. 'noTrim' => false,
  9. ],
  10. // Behaviors
  11. 'Passwordable' => [
  12. ],
  13. 'Reset' => [
  14. ],
  15. 'Slugged' => [
  16. ],
  17. // Email
  18. 'Config' => [
  19. 'systemEmail' => '',
  20. 'systemName' => '',
  21. 'adminEmail' => '',
  22. 'adminName' => '',
  23. 'xMailer' => '',
  24. 'live' => false,
  25. ],
  26. // Helpers
  27. 'Format' => [
  28. 'fontIcons' => [],
  29. 'templates' => [],
  30. ],
  31. 'Google' => [
  32. ],
  33. // Experimental - careful
  34. 'Entity' => [
  35. 'autoMarkNew' => false,
  36. ],
  37. ];