21 lines
918 B
HTML
21 lines
918 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
|
|
<f:be.infobox state="{f:if(condition:'{preset.isAvailable}', then:'0', else:'2')}" disableIcon="true">
|
|
<div class="form-check">
|
|
<input
|
|
type="radio"
|
|
class="form-check-input"
|
|
id="t3-install-tool-configuration-cache-database"
|
|
name="install[values][{feature.name}][enable]"
|
|
value="{preset.name}"
|
|
{f:if(condition: '{preset.isAvailable} && {isWritable}', then:'', else:'disabled="disabled"')}
|
|
{f:if(condition: preset.isActive, then:'checked="checked"')}
|
|
/>
|
|
<label for="t3-install-tool-configuration-cache-database" class="form-check-label">
|
|
<strong>Prefer database storage for caching</strong> {f:if(condition: preset.isActive, then:' [Active]')}
|
|
</label>
|
|
</div>
|
|
</f:be.infobox>
|
|
|
|
</html>
|