TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<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::WARNING')}" disableIcon="true">
|
||||
<div class="form-check">
|
||||
<input
|
||||
type="radio"
|
||||
class="form-check-input"
|
||||
id="t3-install-tool-configuration-mail-custom"
|
||||
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-mail-custom" class="form-check-label">
|
||||
<strong>Custom configuration</strong> {f:if(condition: preset.isActive, then:' [Active]')}
|
||||
</label>
|
||||
</div>
|
||||
<p>Custom mail settings:</p>
|
||||
|
||||
<f:for each="{preset.configurationDescriptors}" as="configuration" key="configurationKey">
|
||||
<div class="row mb-3">
|
||||
<label class="col-sm-6 col-form-label" for="{feature.name}{preset.name}{configurationKey}">{configurationKey}</label>
|
||||
<div class="col-sm-6">
|
||||
<f:render partial="Settings/ReadonlyInfo" arguments="{configuration: configuration}" />
|
||||
<input
|
||||
id="{feature.name}{preset.name}{configurationKey}"
|
||||
type="{f:if(condition: '{configurationKey} == "MAIL/transport_smtp_password"', then: 'password', else: 'text')}"
|
||||
autocomplete="{f:if(condition: '{configurationKey} == "MAIL/transport_smtp_password"', then: 'new-password', else: 'off')}"
|
||||
name="install[values][{feature.name}][{preset.name}][{configurationKey}]"
|
||||
value="{configuration.value}"
|
||||
class="form-control t3js-custom-preset"
|
||||
data-radio="t3-install-tool-configuration-mail-custom"
|
||||
{f:if(condition: '!{isWritable} || {configuration.readonly}', then: 'disabled')}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</f:for>
|
||||
</f:be.infobox>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,29 @@
|
||||
<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-mail-sendmail"
|
||||
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-mail-sendmail" class="form-check-label">
|
||||
<strong>Import sendmail command from PHP settings</strong> {f:if(condition: preset.isActive, then:' [Active]')}
|
||||
</label>
|
||||
</div>
|
||||
<f:if condition="{preset.isAvailable}">
|
||||
<f:then>
|
||||
<p>If you enable this setting the sendmail command will be set to:</p>
|
||||
<p><pre>{preset.sendmailPath}</pre></p>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<p>Sendmail was not found in your PHP settings.</p>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:be.infobox>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,22 @@
|
||||
<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-mail-smtp"
|
||||
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-mail-smtp" class="form-check-label">
|
||||
<strong>SMTP Settings</strong> {f:if(condition: preset.isActive, then:' [Active]')}
|
||||
</label>
|
||||
</div>
|
||||
<p>To set up the mailer agent in TYPO3 CMS to use SMTP it's necessary to configure a SMTP server that will take care of the delivery of your emails.
|
||||
Luckily, the configuration of a SMTP server is generally very easy. This option set some default values for you.</p>
|
||||
</f:be.infobox>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user