Attention

TYPO3 v9 has reached its end-of-life September 30th, 2021 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

You can order Extended Long Term Support (ELTS) here: TYPO3 ELTS.

alias

Declares new variables which are aliases of other variables. Takes a "map"-Parameter which is an associative array which defines the shorthand mapping.

The variables are only declared inside the <f:alias>...</f:alias>-tag. After the closing tag, all declared variables are removed again.

= Examples =

<code title="Single alias"> <f:alias map="{x: 'foo'}">{x}</f:alias> </code> <output> foo </output>

<code title="Multiple mappings"> <f:alias map="{x: foo.bar.baz, y: foo.bar.baz.name}">

{x.name} or {y}

</f:alias> </code> <output> [name] or [name] depending on {foo.bar.baz} </output>

Note: Using this view helper can be a sign of weak architecture. If you end up using it extensively you might want to fine-tune your "view model" (the data you assign to the view).

Arguments

map

DataType

mixed

Required

false

Description

Array that specifies which variables should be mapped to which alias