t3OldFluidLinkAction |
<f:link.action pageUid='42' action: 'NULL' >Link</f:link.action> |
t3OldFluidLinkActionInline |
{f:link.action(pageUid: 42, action: 'NULL')} |
t3OldFluidLinkEmail |
<f:link.email email='example@example.com'>E-Mail</f:link.email> |
t3OldFluidLinkEmailInline |
{f:link.email(email: 'foo')} |
t3OldFluidLinkExternal |
<f:link.external uri='foo'>Link</f:link.external> |
t3OldFluidLinkExternalInline |
{f:link.external(uri: '42')} |
t3OldFluidLinkPage |
<f:link.page pageUid='42'>Link</f:link.page> |
t3OldFluidLinkPageInline |
{f:link.page(pageUid: '42')} |
t3OldFluidLinkTypolink |
<f:link.typolink parameter='42'>LINK</f:link.typolink> |
t3OldFluidLinkTypolinkInline |
{f:link.typolink(parameter: '42')} |
t3OldFluidFor |
<f:for each='objects' as='obj' iteration='inter'>Content</f:for> |
t3OldFluidForInline |
{f:for(each: {object}, as: 'obj', iteration: 'inter')} |
t3OldFluidAlias |
<f:alias map="{amount: '{addresses->f:count()}'}"> <p>There are {amount} records in database</p> </f:alias> |
t3OldFluidAliasInline |
{f:alias(map: {amount: '{addresses->f:count()}'})} |
t3OldFluidCobject |
<f:cObject typoscriptObjectPath="lib.typoscriptStuff" data="{article}" currentValueKey="title" /> |
t3OldFluidCobjectInline |
{f:cObject(typoscriptObjectPath: 'foo', data: [mixed], currentValueKey: 'NULL')} |
t3OldFluidComment |
<f:comment>Wooohooooo!</f:comment> |
t3OldFluidCommentInline |
{f:comment('Woohooo')} |
t3OldFluidCount |
<f:count>{addresses}</f:count> |
t3OldFluidCountInline |
{addresses -> f:count()} |
t3OldFluidCycle |
<f:cycle values="{0: 'green', 1: 'red', 2: 'blue'}" as="color"> {color} </f: cycle> |
t3OldFluidCycleInline |
{f:cycle(values: {foo: 'bar'}, as: 'foo')} |
t3OldFluidDebug |
<f:debug title="NULL" plainText="1" inline="0" >{object}</f: debug> |
t3OldFluidDebugInline |
{f:debug(title: '$1', plaintext: 1, inline: 1)} |
t3OldFluidFlashmessages |
<f:flashMessages class="flashMessage" /> |
t3OldFluidFlashmessagesInline |
{f:debug(title: 'NULL', plaintext: 1, inline: 1)} |
t3OldFluidGroupfor |
<f:groupedFor each="{employees}" as="employeesByCity" groupBy="city" groupKey="city"> <tr> <th colspan="2">{city}</th> </tr> <f: foreach="{employeesByCity}" as="employee"><tr><td>{employee.first_name}</td><td>{employee.city}</td></tr></f: for></f: groupedFor> |
t3OldFluidGroupforInline |
{f:groupedFor(each: {foo: 'bar'}, as: 'foo', groupBy: 'foo', groupKey: ''groupKey'')} |
t3OldFluidIf |
<f:if condition="{data}"><f: then>Thisisbeingshownincasetheconditionmatches.</f: then><f: else>ThisisbeingdisplayedincasetheconditionevaluatestoFALSE.</f: else></f: if> |
t3OldFluidIfInline |
{f:if(condition: someCondition, then: 'condition is met', else: 'condition is not met')} |
t3OldFluidImageFal |
<f:image image="{file}" width="NULL" height="NULL" minWidth="NULL" minHeight="NULL" maxWidth="NULL" maxHeight="NULL" treatIdAsReference="1" /> |
t3OldFluidImagePath |
<f:image src="fileadmin/content/demoimage.jpg" width="NULL" height="NULL" minWidth="NULL" minHeight="NULL" maxWidth="NULL" maxHeight="NULL" alt=" Demo Bild" title="Demo Bild" /> |
t3OldFluidRender |
<f:render section="NULL" partial="NULL" arguments="{foo: 'bar'}" optional="1" /> |
t3OldFluidRenderInline |
{f:render(section: 'NULL', partial: 'NULL', arguments: {foo: 'bar'}, optional: 1)} |
t3OldFluidSwitch |
<f:switch expression="{person.gender}"> <f:case value="1">Hello Mr. {person.lastName}</f:case> <f:case value="2">Hello Mrs. {person.lastName}</f:case> <f:case value="3">Hello Miss {person.lastName}</f:case> <f:case default="TRUE">A person with no specified gender</f:case> </f:switch> |
t3OldFluidSwitchInline |
{f:switch(expression: [mixed])} |
t3OldFluidTranslate |
<f:translate key="NULL" id="NULL" default="NULL" htmlEscape="1" arguments="{foo: 'bar'}" extensionName="NULL" /> |
t3OldFluidTranslateInline |
{f:translate(key: 'NULL', id: 'NULL', default: 'NULL', htmlEscape: 1, arguments: {foo: 'bar'}, extensionName: 'NULL')} |
t3OldFluidFormatBytes |
<f:format.bytes value="123" decimals="123" decimalSeparator="." thousandsSeparator="," /> |
t3OldFluidFormatBytesInline |
{f:format.bytes(value: 123, decimals: 123, decimalSeparator: ''.'', thousandsSeparator: '','')} |
t3OldFluidFormatCdata |
<f:format.cdata>{data}</f:format.cdata> |
t3OldFluidFormatCdataInline |
{f:format.cdata(value: [mixed])} |
t3OldFluidFormatCrop |
<f:format.crop maxCharacters="123" append="..." respectWordBoundaries="1" respectHtml="1"> {data} </f:format.crop> |
t3OldFluidFormatCurrency |
<f:format.currency currencySign="$" decimalSeparator="." thousandsSeparator="," prependCurrency="TRUE" separateCurrency="FALSE" decimals="2">br{numbers} </f:format.currency> |
t3OldFluidFormatDate |
<f:format.date format="H:i">$1</f:format.date> |
t3OldFluidFormatHtml |
<f:format.html parseFuncTSPath="lib.parseFunc_RTE"> {data} </f:format.html> |
t3OldFluidFormatHtmlInline |
{data->f:format.html(parseFuncTSPath: 'lib.parseFunc_RTE')} |
t3OldFluidFormatHtmlentitiesdecode |
<f:format.htmlentitiesDecode value="NULL" keepQuotes="1" encoding="NULL" /> |
t3OldFluidFormatHtmlentitiesdecodeInline |
{f:format.htmlentitiesDecode(value: 'NULL', keepQuotes: 1, encoding: 'NULL')} |
t3OldFluidFormatHtmlentities |
<f:format.htmlentitiesDecode value="NULL" keepQuotes="1" encoding="NULL" doubleEncode="1"/> |
t3OldFluidFormatHtmlentitiesInline |
{f:format.htmlentitiesDecode(value: 'NULL', keepQuotes: 1, encoding: 'NULL', doubleEncode:1)} |
t3OldFluidFormatHtmlspecialchars |
<f:format.htmlspecialchars keepQuotes="1" encoding="NULL" doubleEncode="1"> {data} </f:format.htmlspecialchars> |
t3OldFluidFormatHtmlspecialcharsInline |
{f:format.htmlspecialchars(value: 'NULL', keepQuotes: 1, encoding: 'NULL', doubleEncode: 1)} |
t3OldFluidFormatNl2br |
<f:format.nl2br value="Hello World"> |
t3OldFluidFormatNl2brInline |
{f:format.nl2br(value: 'Hello World')} |
t3OldFluidFormatNumber |
<f:format.number decimals="123" decimalSeparator="." thousandsSeparator=",">{numbers}</f:format.number> |
t3OldFluidFormatNumberInline |
{f:format.number(decimals: 123, decimalSeparator: ''.'', thousandsSeparator: '','')} |
t3OldFluidFormatPrintf |
<f:format.printf arguments="{0: 3, 1: 'Kasper'}"> %2$s is great, TYPO%1$d too. Yes, TYPO%1$d is great and so is %2$s. </f:format.printf> |
t3OldFluidFormatPrintfInline |
{someText -> f:format.printf(arguments: {1: 'TYPO3'})} |
t3OldFluidFormatRaw |
<f:format.raw>{string}</f:format.raw> |
t3OldFluidFormatRawInline |
{string -> f:format.raw()} |
t3OldFluidFormatStriptags |
<f:format.stripTags value="Hello<br>World" /> |
t3OldFluidFormatStriptagsInline |
{f:format.stripTags(value: 'Hello<br>World')} |
t3OldFluidFormatUrlencode |
<f:format.urlencode value="http://www.freit.de " /> |
t3OldFluidFormatUrlencodeInline |
{f:format.urlencode(value: 'http://www.freit.de')} |
t3OldFluidFormButton |
<f:form.button type="submit" name="NULL" property="NULL" >Submit</f:form.button> |
t3OldFluidFormButtonInline |
{f:form.button(type: 'submit', name: 'NULL', value: 'Submit', property: 'NULL')} |
t3OldFluidFormCheckbox |
<f:form.checkbox checked="1" name="NULL" value="foo" property="NULL" /> |
t3OldFluidFormCheckboxInline |
{f:form.checkbox(checked: 1, name: 'NULL', value: 'foo', property: 'NULL')} |
t3OldFluidFormHidden |
<f:form.hidden name="NULL" value="[mixed]" property="NULL" /> |
t3OldFluidFormHiddenInline |
{f:form.hidden(name: 'NULL', value: 'foo', property: 'NULL')} |
t3OldFluidFormPassword |
<f:form.password name="NULL" value="[mixed]" property="NULL" /> |
t3OldFluidFormPasswordInline |
{f:form.password(name: 'NULL', value: [mixed], property: 'NULL')} |
t3OldFluidFormRadio |
<f:form.radio checked="1" name="NULL" value="foo" property="NULL" /> |
t3OldFluidFormRadioInline |
{f:form.radio(checked: 1, name: 'NULL', value: 'foo', property: 'NULL')} |
t3OldFluidFormTextarea |
<f:form.textarea name="NULL" property="NULL" rows="[anySimpleType]" cols="[anySimpleType]"></f:form.textarea> |
t3OldFluidFormTextfield |
<f:form.textfield type="text" name="NULL" value="[mixed]" property="NULL" /> |
t3OldFluidFormTextfieldInline |
{f:form.textfield(type: 'text, name: 'NULL', value: [mixed], property: 'NULL')} |
t3OldFluidFormUpload |
<f:form.upload name="NULL" property="NULL" multiple="NULL" /> |
t3OldFluidFormUploadInline |
{f:form.upload(name: 'NULL', property: 'NULL', multiple: '1')} |
t3OldFluidUriAction |
<f:uri.action action="NULL" pageUid="123" /> |
t3OldFluidUriActionInline |
{f:uri.action(action: 'NULL', pageUid: 123} |
t3OldFluidUriEmail |
<f:uri.email email="foo"> |
t3OldFluidUriEmailInline |
{f:uri.email(email: '$1')} |
t3OldFluidUriExternal |
<f:uri.external uri="freit.de" defaultScheme="http" /> |
t3OldFluidUriExternalInline |
{f:uri.external(uri: '$1', defaultScheme: 'http')} |
t3OldFluidUriImage |
<f:uri.image src="NULL" image="[anySimpleType]" width="NULL" height="NULL" treatIdAsReference="1" /> |
t3OldFluidUriImageInline |
{f:uri.image(src: 'NULL', image: [anySimpleType], width: 'NULL', height: 'NULL', treatIdAsReference: 1)} |
t3OldFluidUriPage |
<f:uri.page pageUid="42" /> |
t3OldFluidUriPageInline |
{f:uri.page(pageUid: 23)} |
t3OldFluidUriTypolink |
<f:uri.typolink parameter="foo" additionalParams=""> |
t3OldFluidUriTypolinkInline |
{f:uri.typolink(parameter: 'foo', additionalParams: ')} |