mirror of
https://github.com/espocrm/espocrm.git
synced 2026-03-03 02:27:01 +00:00
fixed untracked files
This commit is contained in:
@@ -1,88 +0,0 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'database' =>
|
||||
array (
|
||||
'driver' => 'pdo_mysql',
|
||||
'host' => 'localhost',
|
||||
'dbname' => 'espocrm',
|
||||
'user' => 'root',
|
||||
'password' => '',
|
||||
),
|
||||
'logger' =>
|
||||
array (
|
||||
'dir' => 'data/logs',
|
||||
'file' => 'espo.log',
|
||||
'level' => 'DEBUG',
|
||||
),
|
||||
'scopeModuleMap' =>
|
||||
array (
|
||||
'Product' => 'Crm',
|
||||
'Account' => 'Crm',
|
||||
'Contact' => 'Crm',
|
||||
'Lead' => 'Crm',
|
||||
'Opportunity' => 'Crm',
|
||||
'Calendar' => 'Crm',
|
||||
'Meeting' => 'Crm',
|
||||
'Call' => 'Crm',
|
||||
'Task' => 'Crm',
|
||||
'Case' => 'Crm',
|
||||
'Prospect' => 'Crm',
|
||||
'Email' => 'Crm',
|
||||
'emailTemplate' => 'Crm',
|
||||
'inboundEmail' => 'Crm',
|
||||
),
|
||||
'adminItems' =>
|
||||
array (
|
||||
0 => 'custom1',
|
||||
1 => 'custom2',
|
||||
),
|
||||
'useCache' => false,
|
||||
'recordsPerPage' => 20,
|
||||
'recordsPerPageSmall' => 5,
|
||||
'applicationName' => 'EspoCRM',
|
||||
'timeZone' => '',
|
||||
'dateFormat' => 'MM/DD/YYYY',
|
||||
'timeFormat' => 'HH:mm',
|
||||
'weekStart' => '1',
|
||||
'thousandSeparator' => ',',
|
||||
'decimalMark' => '.',
|
||||
'currencyList' =>
|
||||
array (
|
||||
0 => 'USD',
|
||||
1 => 'EUR',
|
||||
),
|
||||
'defaultCurrency' => 'USD',
|
||||
'outboundEmailIsShared' => true,
|
||||
'outboundEmailFromName' => 'EspoCRM',
|
||||
'outboundEmailFromAddress' => 'crm@letrium.com',
|
||||
'smtpServer' => 'mail.letrium.com',
|
||||
'smtpPort' => 25,
|
||||
'smtpAuth' => true,
|
||||
'smtpSecurity' => '',
|
||||
'smtpUsername' => 'test+letrium.com',
|
||||
'smtpPassword' => 'test123',
|
||||
'tabList' =>
|
||||
array (
|
||||
0 => 'Account',
|
||||
1 => 'Contact',
|
||||
2 => 'Lead',
|
||||
3 => 'Prospect',
|
||||
4 => 'Opportunity',
|
||||
5 => 'Calendar',
|
||||
6 => 'Meeting',
|
||||
7 => 'Call',
|
||||
8 => 'Task',
|
||||
9 => 'Case',
|
||||
),
|
||||
'quickCreateList' =>
|
||||
array (
|
||||
0 => 'Contact',
|
||||
1 => 'Lead',
|
||||
2 => 'Meeting',
|
||||
3 => 'Call',
|
||||
4 => 'Task',
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
||||
4181
data/cache/application/metadata.php
vendored
4181
data/cache/application/metadata.php
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,51 +0,0 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'Espo\\Entities\\Bug' =>
|
||||
array (
|
||||
'type' => 'entity',
|
||||
'manyToOne' =>
|
||||
array (
|
||||
'reporter' =>
|
||||
array (
|
||||
'inversedBy' => 'reportedBugs',
|
||||
'targetEntity' => 'Espo\\Entities\\User',
|
||||
),
|
||||
'engineer' =>
|
||||
array (
|
||||
'inversedBy' => 'assignedBugs',
|
||||
'targetEntity' => 'Espo\\Entities\\User',
|
||||
),
|
||||
),
|
||||
'fields' =>
|
||||
array (
|
||||
'status' =>
|
||||
array (
|
||||
'type' => 'string',
|
||||
),
|
||||
'description' =>
|
||||
array (
|
||||
'type' => 'text',
|
||||
),
|
||||
'created' =>
|
||||
array (
|
||||
'type' => 'datetime',
|
||||
),
|
||||
),
|
||||
'repositoryClass' => 'BugRepository',
|
||||
'table' => 'bugs',
|
||||
'id' =>
|
||||
array (
|
||||
'id' =>
|
||||
array (
|
||||
'type' => 'string',
|
||||
'generator' =>
|
||||
array (
|
||||
'strategy' => 'UUID',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'Espo\\Entities\\User' =>
|
||||
array (
|
||||
'table' => 'users',
|
||||
'type' => 'entity',
|
||||
'id' =>
|
||||
array (
|
||||
'id' =>
|
||||
array (
|
||||
'type' => 'string',
|
||||
'generator' =>
|
||||
array (
|
||||
'strategy' => 'UUID',
|
||||
),
|
||||
),
|
||||
),
|
||||
'fields' =>
|
||||
array (
|
||||
'username' =>
|
||||
array (
|
||||
'type' => 'string(30)',
|
||||
),
|
||||
'password' =>
|
||||
array (
|
||||
'type' => 'string(255)',
|
||||
),
|
||||
'isAdmin' =>
|
||||
array (
|
||||
'type' => 'boolean',
|
||||
'options' =>
|
||||
array (
|
||||
'default' => 0,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
||||
@@ -1,15 +0,0 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'Modules\\Crm\\Entities\\Contact' =>
|
||||
array (
|
||||
'module' => 'Test',
|
||||
'var1' =>
|
||||
array (
|
||||
'subvar1' => 'NEWsubval1',
|
||||
'subvar55' => 'subval55',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'Modules\\Crm\\Entities\\Product' =>
|
||||
array (
|
||||
'table' => 'products',
|
||||
'type' => 'entity',
|
||||
'id' =>
|
||||
array (
|
||||
'id' =>
|
||||
array (
|
||||
'type' => 'string',
|
||||
'generator' =>
|
||||
array (
|
||||
'strategy' => 'UUID',
|
||||
),
|
||||
),
|
||||
),
|
||||
'fields' =>
|
||||
array (
|
||||
'name' =>
|
||||
array (
|
||||
'type' => 'string',
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user