1 {namespace i=TYPO3\CMS\Install\ViewHelpers}
2 <div class=
"panel panel-default panel-flat">
3 <div class=
"panel-heading" role=
"tab" id=
"heading{sectionName}">
4 <h3 class=
"panel-title">
5 <a role=
"button" data-toggle=
"collapse" data-parent=
"#accordion" href=
"#collapse{sectionName}"
6 aria-expanded=
"true" aria-controls=
"collapse{sectionName}" class=
"collapsed"
8 <span class=
"caret"></span>
10 <i:object.arrayValueByKey
array=
"{localConfigurationSectionNames}" key=
"{sectionName}"/>
11 </strong> [{sectionName}]
15 <div id=
"collapse{sectionName}" class=
"panel-collapse collapse" role=
"tabpanel" aria-labelledby=
"heading{sectionName}">
16 <f:for each=
"{sectionData}" as=
"item">
17 <a id=
"{sectionName}-{item.key}"></a>
19 <div class=
"item-heading">
20 <strong>[{sectionName}]{item.path}
</strong>
21 <f:if condition=
"{item.type} == 'checkbox'">
24 <f:if condition=
"{item.value}">
26 <f:else>false
</f:else>
30 <f:if condition=
"{item.value}">
31 = {item.value -
> f:format.crop(maxCharacters:
40, respectWordBoundaries:
0, respectHtml:
0)}
36 <div class=
"item-body">
37 <f:if condition=
"{item.differentValueInCurrentConfiguration}">
38 <div class=
"t3js-infobox callout callout-sm callout-warning">
39 <div class=
"callout-body">
40 Note that
<code>$GLOBALS['TYPO3_CONF_VARS']
</code> currently contains a different value.
41 This could mean that the value is overwritten in AdditionalConfiguration.php.
45 <f:if condition=
"{f:count(subject: item.allowedValues)} || {item.dataType} == 'dropdown'">
47 <div class=
"form-group">
48 <span class=
"help-block">{item.description -
> f:format.raw()}
</span>
50 data-path=
"{sectionName}/{item.key}"
51 class=
"t3-install-form-input-text form-control t3js-localConfiguration-pathValue">
52 <f:for each=
"{item.allowedValues}" as=
"value">
53 <option value=
"{item.value}" {f:if(condition:'{item.value} == {value}', then: '
selected=
"selected"')}
>{value}
</option>
59 <f:if condition=
"{item.type} == 'checkbox'">
60 <div class=
"checkbox">
65 class=
"t3js-localConfiguration-pathValue"
66 data-path=
"{sectionName}/{item.key}"
67 {f:if(condition: item.checked, then:'
checked=
"checked"')}
69 {item.description -
> f:format.raw()}
73 <f:if condition=
"{item.type} == 'input'">
74 <div class=
"form-group">
75 <span class=
"help-block">{item.description -
> f:format.raw()}
</span>
79 data-path=
"{sectionName}/{item.key}"
80 class=
"t3-install-form-input-text form-control t3js-localConfiguration-pathValue"
85 <f:if condition=
"{item.type} == 'number'">
86 <div class=
"form-group">
87 <span class=
"help-block">{item.description -
> f:format.raw()}
</span>
91 data-path=
"{sectionName}/{item.key}"
92 class=
"t3-install-form-input-text form-control t3js-localConfiguration-pathValue"
97 <f:if condition=
"{item.type} == 'textarea'">
98 <span class=
"help-block">{item.description -
> f:format.raw()}
</span>
99 <div class=
"form-group">
103 data-path=
"{sectionName}/{item.key}"
104 class=
"form-control t3js-localConfiguration-pathValue"
105 >{item.value}
</textarea>
111 <f:if condition=
"{item.phpErrorCode}">
112 <div class=
"fieldNote">
113 Current PHP error code
<strong>{item.value}
</strong> represents:
<br/>
115 <i:format.phpErrorCode
phpErrorCode=
"{item.value}"/>