2014-05-14 23:24:20 +10:00
|
|
|
<?php
|
|
|
|
|
2015-02-17 20:58:38 +11:00
|
|
|
return [
|
2014-05-14 23:24:20 +10:00
|
|
|
|
2014-07-29 17:44:24 +10:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Specifies the default CMS theme
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This parameter value can be overridden by the CMS back-end settings.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'activeTheme' => 'test',
|
|
|
|
|
2014-05-14 23:24:20 +10:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Time to live for parsed CMS objects.
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Specifies the number of minutes the CMS object cache lives. After the interval
|
|
|
|
| is expired item are re-cached. Note that items are re-cached automatically when
|
|
|
|
| the corresponding template file is modified.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'parsedPageCacheTTL' => 1440,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Determines if the routing caching is enabled.
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| If the caching is enabled, the page URL map is saved in the cache. If a page
|
|
|
|
| URL was changed on the disk, the old URL value could be still saved in the cache.
|
|
|
|
| To update the cache the back-end Clear Cache feature should be used. It is recommended
|
|
|
|
| to disable the caching during the development, and enable it in the production mode.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'enableRoutesCache' => true,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Time to live for the URL map.
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The URL map used in the CMS page routing process. By default
|
|
|
|
| the map is updated every time when a page is saved in the back-end or when the
|
|
|
|
| interval, in minutes, specified with the urlMapCacheTTL parameter expires.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'urlCacheTtl' => 1,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Determines if the asset caching is enabled.
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| If the caching is enabled, combined assets are cached. If a asset file
|
|
|
|
| is changed on the disk, the old file contents could be still saved in the cache.
|
|
|
|
| To update the cache the back-end Clear Cache feature should be used. It is recommended
|
|
|
|
| to disable the caching during the development, and enable it in the production mode.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-10-10 21:54:19 +02:00
|
|
|
'enableAssetCache' => false,
|
2014-07-29 17:44:24 +10:00
|
|
|
|
2014-05-14 23:24:20 +10:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Disables Twig caching for unit tests
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
'twigNoCache' => true,
|
2015-01-05 12:37:04 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Convert Line Endings
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Determines if October should convert line endings from the windows style
|
|
|
|
| \r\n to the unix style \n.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'convertLineEndings' => true,
|
2015-02-10 17:45:27 +11:00
|
|
|
|
2015-03-02 19:01:30 +11:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Local plugins path
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Specifies the absolute local plugins path.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-01-02 15:41:27 +01:00
|
|
|
'pluginsPathLocal' => base_path('tests/fixtures/plugins'),
|
2015-03-02 19:01:30 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Local themes path
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Specifies the absolute local themes path.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-01-02 15:41:27 +01:00
|
|
|
'themesPathLocal' => base_path('tests/fixtures/themes'),
|
2015-03-02 19:01:30 +11:00
|
|
|
|
2015-02-17 20:58:38 +11:00
|
|
|
];
|