22 lines
918 B
HTML
22 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:constant(name: 'TYPO3\CMS\Core\Type\ContextualFeedbackSeverity::OK')}" disableIcon="true">
|
|
<div class="form-check">
|
|
<input
|
|
type="radio"
|
|
class="form-check-input"
|
|
id="t3-install-tool-configuration-context-debug"
|
|
name="install[values][{feature.name}][enable]"
|
|
value="{preset.name}"
|
|
{f:if(condition: preset.isActive, then:'checked="checked"')}
|
|
{f:if(condition: '!{isWritable}', then: 'disabled')}
|
|
/>
|
|
<label for="t3-install-tool-configuration-context-debug" class="form-check-label">
|
|
<strong>Debug</strong> {f:if(condition: preset.isActive, then:' [Active]')}
|
|
</label>
|
|
</div>
|
|
<p>Enable debug output and set logging to info level.</p>
|
|
</f:be.infobox>
|
|
|
|
</html>
|