Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Format.cdata ViewHelper <f:format.cdata>
Outputs an argument/value without any escaping and wraps it with CDATA tags.
PAY SPECIAL ATTENTION TO SECURITY HERE (especially Cross Site Scripting), as the output is NOT SANITIZED!
Examples
Child nodes
<f:format.cdata>{string}</f:format.cdata>
Copied!
Output:
<![CDATA[(Content of {string} without any conversion/escaping)]]>
Copied!
Value attribute
<f:format.cdata value="{string}" />
Copied!
Output:
<![CDATA[(Content of {string} without any conversion/escaping)]]>
Copied!
Inline notation
{string -> f:format.cdata()}
Copied!
Output:
<![CDATA[(Content of {string} without any conversion/escaping)]]>
Copied!
Source code
Go to the source code of this ViewHelper: CdataViewHelper.php (GitHub).
Arguments
The following arguments are available for <f:
:
value
-
- Type
- mixed
The value to output