Attention
TYPO3 v7 has reached its end-of-life November 30th, 2018 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.
There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.
Heed the order¶
The single most important thing to know about stdWrap
is that all properties are parsed/executed exactly in the order
in which they appear in the TypoScript Reference,
no matter in which order you have set them in your TypoScript
template.
Let's consider this example:
10 = TEXT
10.value = typo3
10.noTrimWrap = |<strong>Tool: |</strong>|
10.case = upper
It results in the following:
<strong>Tool: TYPO3</strong>
The case
property is executed before the wrap
property. Hence only "typo3" was changed to uppercase and
not the "Tool:" with which it is wrapped.