Skip to content

Commit 7abc958

Browse files
committed
[TASK] Extend TYPO3 system settings with additional configuration options
Add new configuration parameters for extensions like backend, extensionmanager, indexed_search, redirects, scheduler, and styleguide.
1 parent 769cbcd commit 7abc958

1 file changed

Lines changed: 85 additions & 0 deletions

File tree

.devbox/config/system/settings.php

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,95 @@
2727
],
2828
],
2929
'EXTENSIONS' => [
30+
'backend' => [
31+
'backendFavicon' => '',
32+
'backendLogo' => '',
33+
'loginBackgroundImage' => '',
34+
'loginFootnote' => '',
35+
'loginHighlightColor' => '',
36+
'loginLogo' => '',
37+
'loginLogoAlt' => '',
38+
],
3039
'extension_builder' => [
3140
'backupDir' => 'var/tx_extensionbuilder/backups',
3241
'backupExtension' => '1',
3342
'enableRoundtrip' => '1',
3443
],
44+
'extensionmanager' => [
45+
'automaticInstallation' => '1',
46+
'offlineMode' => '0',
47+
],
48+
'indexed_search' => [
49+
'catdoc' => '/usr/bin/',
50+
'deleteFromIndexAfterEditing' => '1',
51+
'disableFrontendIndexing' => '0',
52+
'flagBitMask' => '192',
53+
'fullTextDataLength' => '0',
54+
'ignoreExtensions' => '',
55+
'indexExternalURLs' => '0',
56+
'maxExternalFiles' => '5',
57+
'minAge' => '24',
58+
'pdf_mode' => '20',
59+
'pdftools' => '/usr/bin/',
60+
'ppthtml' => '/usr/bin/',
61+
'unrtf' => '/usr/bin/',
62+
'unzip' => '/usr/bin/',
63+
'useMysqlFulltext' => '0',
64+
'xlhtml' => '/usr/bin/',
65+
],
66+
'redirects' => [
67+
'showCheckIntegrityInfoInReports' => '1',
68+
'showCheckIntegrityInfoInReportsSeconds' => '86400',
69+
],
70+
'scheduler' => [
71+
'maxLifetime' => '1440',
72+
],
73+
'styleguide' => [
74+
'boolean_1' => '0',
75+
'boolean_2' => '1',
76+
'boolean_3' => '',
77+
'boolean_4' => '0',
78+
'color_1' => 'black',
79+
'color_2' => '#000000',
80+
'color_3' => '000000',
81+
'color_4' => '',
82+
'compat_default_1' => 'value',
83+
'compat_default_2' => '',
84+
'compat_input_1' => 'value',
85+
'compat_input_2' => '',
86+
'int_1' => '1',
87+
'int_2' => '',
88+
'int_3' => '-100',
89+
'int_4' => '2',
90+
'intplus_1' => '1',
91+
'intplus_2' => '',
92+
'intplus_3' => '2',
93+
'nested' => [
94+
'input_1' => 'aDefault',
95+
'input_2' => '',
96+
],
97+
'offset_1' => 'x,y',
98+
'offset_2' => 'x',
99+
'offset_3' => ',y',
100+
'offset_4' => '',
101+
'options_1' => 'default',
102+
'options_2' => 'option_2',
103+
'options_3' => '',
104+
'predefined' => [
105+
'boolean_1' => '1',
106+
'int_1' => '42',
107+
],
108+
'small_1' => 'value',
109+
'small_2' => '',
110+
'string_1' => 'value',
111+
'string_2' => '',
112+
'user_1' => '0',
113+
'wrap_1' => 'value',
114+
'wrap_2' => '',
115+
'zeroorder_input_1' => 'value',
116+
'zeroorder_input_2' => '',
117+
'zeroorder_input_3' => '',
118+
],
35119
],
36120
'FE' => [
37121
'cacheHash' => [
@@ -108,5 +192,6 @@
108192
'systemMaintainers' => [
109193
1,
110194
],
195+
'trustedHostsPattern' => '.*',
111196
],
112197
];

0 commit comments

Comments
 (0)