Property | Type | Description | |
---|---|---|---|
$escapeChildren | boolean | ||
$escapeOutput | boolean | Disable the output escaping interceptor so that the result is not htmlspecialchar'd |
Method | Description | |
---|---|---|
render ( string $value = null, boolean $keepQuotes = false, string $encoding = 'UTF-8', boolean $doubleEncode = true ) : string | Escapes special characters with their escaped counterparts as needed using PHPs htmlentities() function. | |
renderStatic ( array $arguments, Closure $renderChildrenClosure, TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface $renderingContext ) : string | Applies htmlentities() on the specified value. |
public render ( string $value = null, boolean $keepQuotes = false, string $encoding = 'UTF-8', boolean $doubleEncode = true ) : string | ||
$value | string | string to format |
$keepQuotes | boolean | if TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag) |
$encoding | string | |
$doubleEncode | boolean | If FALSE existing html entities won't be encoded, the default is to convert everything. |
return | string | the altered string |
public static renderStatic ( array $arguments, Closure $renderChildrenClosure, TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface $renderingContext ) : string | ||
$arguments | array | |
$renderChildrenClosure | Closure | |
$renderingContext | TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface | |
return | string |
protected bool $escapeOutput | ||
return | boolean |