fixed untracked files

This commit is contained in:
Yuri Kuznetsov
2013-11-06 15:47:56 +02:00
parent d36acec28b
commit 62b22c5504
6 changed files with 0 additions and 4405 deletions

View File

@@ -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',
),
);
?>

File diff suppressed because it is too large Load Diff

View File

@@ -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',
),
),
),
),
);
?>

View File

@@ -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,
),
),
),
),
);
?>

View File

@@ -1,15 +0,0 @@
<?php
return array (
'Modules\\Crm\\Entities\\Contact' =>
array (
'module' => 'Test',
'var1' =>
array (
'subvar1' => 'NEWsubval1',
'subvar55' => 'subval55',
),
),
);
?>

View File

@@ -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',
),
),
),
);
?>