systemConfig changes

This commit is contained in:
Taras Machyshyn
2013-11-06 13:31:09 +02:00
parent ea64e78868
commit 3cec02c4c7
33 changed files with 41 additions and 9 deletions
+6
View File
@@ -71,6 +71,12 @@ return array (
'configPathFull',
'configCustomPathFull',
'crud',
'customDir',
'espoPath',
'espoModulePath',
'espoCustomPath',
'controllerPath',
'scopeModuleMap',
),
'adminItems' =>
array (
@@ -1 +0,0 @@
[{"label":"MyLabel"}]
@@ -1 +0,0 @@
[{"oldlabel":"MyLabeldddd","label":"MyLabel"}]
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
Regular → Executable
View File
Vendored Regular → Executable
+35 -7
View File
@@ -495,11 +495,11 @@ return array (
),
'weekStart' =>
array (
'type' => 'enum',
'type' => 'enumInt',
'options' =>
array (
0 => '0',
1 => '1',
0 => 0,
1 => 1,
),
'default' => 0,
),
@@ -611,13 +611,13 @@ return array (
),
'weekStart' =>
array (
'type' => 'enum',
'type' => 'enumInt',
'options' =>
array (
0 => '0',
1 => '1',
0 => 0,
1 => 1,
),
'default' => '1',
'default' => 0,
),
'thousandSeparator' =>
array (
@@ -716,6 +716,7 @@ return array (
8 => 'Case',
9 => 'Prospect',
),
'translation' => 'App.scopeNamesPlural',
),
'quickCreateList' =>
array (
@@ -732,6 +733,7 @@ return array (
7 => 'Case',
8 => 'Prospect',
),
'translation' => 'App.scopeNames',
),
),
),
@@ -3064,6 +3066,32 @@ return array (
'advanced' => true,
),
),
'enumInt' =>
array (
'params' =>
array (
0 =>
array (
'name' => 'options',
'type' => 'array',
),
1 =>
array (
'name' => 'default',
'type' => 'varchar',
),
2 =>
array (
'name' => 'translation',
'type' => 'varchar',
),
),
'search' =>
array (
'basic' => false,
'advanced' => true,
),
),
'float' =>
array (
'params' =>
Regular → Executable
View File