This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Core/defaults/config.php
T
2014-02-18 11:42:30 +02:00

75 lines
1.5 KiB
PHP

<?php
return array (
'configPath' => 'application/config.php',
'cachePath' => 'data/cache',
'languageConfig' =>
array (
'name' => '{lang}',
'cachePath' => 'data/cache/application/Language',
'corePath' => 'application/Espo/Language',
'customPath' => 'application/Espo/Modules/{*}/Language',
),
'defaultPermissions' =>
array (
'dir' => '0775',
'file' => '0664',
'user' => '',
'group' => '',
),
'dateFormat' => 'MM/DD/YYYY',
'timeFormat' => 'HH:mm',
'cron' => array(
'maxJobNumber' => 15, /*Max number of jobs per one execution*/
'jobPeriod' => 7800, /*Period for jobs, ex. if cron executed at 15:35, it will execute all pending jobs for times from 14:05 to 15:35*/
'minExecutionTime' => 50, /*to avoid too frequency execution*/
),
'systemUser' => array(
'id' => 'system',
'userName' => 'system',
'firstName' => '',
'lastName' => 'System',
),
'crud' => array(
'get' => 'read',
'post' => 'create',
'put' => 'update',
'patch' => 'patch',
'delete' => 'delete',
),
'systemItems' =>
array (
'systemItems',
'adminItems',
'configPath',
'cachePath',
'languageConfig',
'database',
'crud',
),
'adminItems' =>
array (
'defaultPermissions',
'logger',
'devMode',
),
'currency' =>
array(
'base' => 'USD',
'rate' => array(
'EUR' => 1.37,
'GBP' => 1.67,
),
),
'defaultLanguage' => 'enUs',
);
?>