TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:formvh="http://typo3.org/ns/TYPO3/CMS/Form/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<div id="{form.identifier}">
|
||||
{message -> f:sanitize.html() -> f:transform.html()}
|
||||
</div>
|
||||
</html>
|
||||
@@ -0,0 +1,53 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
xmlns:formvh="http://typo3.org/ns/TYPO3/CMS/Form/ViewHelpers">
|
||||
<f:layout name="SystemEmail" />
|
||||
<f:section name="Title">{title}</f:section>
|
||||
<f:section name="Main">
|
||||
<f:if condition="{messageBefore}">{messageBefore -> f:sanitize.html() -> f:format.html()}</f:if>
|
||||
<f:if condition="!{hideFormValues}">
|
||||
<table>
|
||||
<formvh:renderAllFormValues renderable="{form.formDefinition}" as="formValue">
|
||||
<tr>
|
||||
<f:if condition="{formValue.isSection}">
|
||||
<f:then>
|
||||
<td colspan="2"><b>{formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey)}</b></td>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<td valign="top" align="left">{formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey) -> f:sanitize.html() -> f:transform.html()}</td>
|
||||
<td valign="top" align="left">
|
||||
<f:if condition="{formValue.value}">
|
||||
<f:then>
|
||||
<f:if condition="{formValue.isMultiValue}">
|
||||
<f:then>
|
||||
<table cellspacing="0" border="0">
|
||||
<f:for each="{formValue.processedValue}" as="value">
|
||||
<tr>
|
||||
<td>{value}</td>
|
||||
</tr>
|
||||
</f:for>
|
||||
</table>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<table cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td><f:format.nl2br>{formValue.processedValue}</f:format.nl2br></td>
|
||||
</tr>
|
||||
</table>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
-
|
||||
</f:else>
|
||||
</f:if>
|
||||
</td>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</tr>
|
||||
</formvh:renderAllFormValues>
|
||||
</table>
|
||||
</f:if>
|
||||
<f:if condition="{messageAfter}">{messageAfter -> f:sanitize.html() -> f:format.html()}</f:if>
|
||||
</f:section>
|
||||
</html>
|
||||
@@ -0,0 +1,19 @@
|
||||
<f:layout name="SystemEmail" />
|
||||
<f:section name="Title">{title}</f:section>
|
||||
<f:section name="Main">
|
||||
<f:if condition="{messageBefore}">{messageBefore -> f:format.stripTags()}
|
||||
|
||||
</f:if><f:if condition="!{hideFormValues}"><formvh:renderAllFormValues renderable="{form.formDefinition}" as="formValue"><f:spaceless>
|
||||
<f:if condition="{formValue.isMultiValue}">
|
||||
<f:then>
|
||||
<f:if condition="{formValue.isSection}"><f:then>*** {formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey)} ***</f:then><f:else>{formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey) -> f:format.stripTags()}: <f:for each="{formValue.processedValue}" as="singleValue">- {singleValue}
|
||||
</f:for></f:else></f:if>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:if condition="{formValue.isSection}"><f:then>*** {formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey)} ***</f:then><f:else>{formvh:translateElementProperty(element: formValue.element, property: 'label', languageKey: languageKey) -> f:format.stripTags()}: <f:if condition="{formValue.processedValue}"><f:then>{formValue.processedValue -> f:format.raw()}</f:then><f:else>-</f:else></f:if></f:else></f:if>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:spaceless>
|
||||
</formvh:renderAllFormValues></f:if><f:if condition="{messageAfter}">
|
||||
{messageAfter -> f:format.stripTags()}</f:if>
|
||||
</f:section>
|
||||
@@ -0,0 +1,3 @@
|
||||
<html data-namespace-typo3-fluid="true">
|
||||
<p>{message}</p>
|
||||
</html>
|
||||
Reference in New Issue
Block a user