| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- $config = [
- // Controller pagination
- 'Paginator' => [
- ],
- // Error handling around 404s
- 'Log' => [
- 'debug' => [
- 'scopes' => null,
- ],
- 'error' => [
- 'scopes' => null,
- ],
- '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' => [
- 'templates' => [],
- ],
- 'Google' => [
- ],
- 'Icon' => [
- 'checkExistence' => false,
- 'sets' => [],
- 'map' => [],
- ],
- ];
|