| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- $config = [
- // Controller pagination
- 'Paginator' => [
- ],
- // Error handling around 404s
- 'Log' => [
- 'debug' => [
- 'scopes' => false,
- ],
- 'error' => [
- 'scopes' => false,
- ],
- '404' => [
- 'file' => '404',
- 'levels' => ['error'],
- 'scopes' => ['404'],
- ],
- ],
- // Controller pagination
- 'DataPreparation' => [
- 'noTrim' => false,
- ],
- // Behaviors
- 'Passwordable' => [
- ],
- 'Reset' => [
- ],
- 'Slugged' => [
- ],
- // Email
- 'Config' => [
- 'systemEmail' => '',
- 'systemName' => '',
- 'adminEmail' => '',
- 'adminName' => '',
- 'xMailer' => '',
- 'live' => false,
- ],
- // Helpers
- 'Format' => [
- 'fontIcons' => [],
- 'templates' => [],
- ],
- 'Google' => [
- ],
- // Experimental - careful
- 'Entity' => [
- 'autoMarkNew' => false,
- ],
- ];
|