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/systemConfig.php
T

83 lines
1.7 KiB
PHP

<?php
return array (
'configPath' => 'application/config.php',
'customDir' => 'application/Espo/Custom',
'cachePath' => 'data/cache',
'defaultsPath' => 'application/Espo/Core/defaults',
'unsetFileName' => 'unset.json',
'espoModulePath' => 'Espo/Modules/{*}',
'espoCustomPath' => 'Espo/Custom',
'metadataConfig' =>
array (
'name' => 'metadata',
'cachePath' => 'data/cache/application',
'corePath' => 'application/Espo/Resources/metadata',
'customPath' => 'application/Espo/Modules/{*}/Resources/metadata',
),
'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',
'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',
'metadataConfig',
'languageConfig',
'database',
'customPath',
'defaultsPath',
'unsetFileName',
'configPathFull',
'configCustomPathFull',
'crud',
'customDir',
'espoModulePath',
'espoCustomPath',
'scopeModuleMap',
),
'adminItems' =>
array (
'defaultPermissions',
'logger',
'devMode',
),
);
?>