Format
Table of Contents
Classes
- AbstractEncodingViewHelper
- This is the base class for ViewHelpers that work with encodings.
- BytesViewHelper
- ViewHelper which formats an integer (byte count) into specific human-readable output.
- CropViewHelper
- ViewHelper which can crop (shorten) a text.
- CurrencyViewHelper
- ViewHelper which formats a given float to a currency representation.
- DateViewHelper
- ViewHelper to format an object implementing `\DateTimeInterface` into human-readable output.
- HtmlentitiesDecodeViewHelper
- ViewHelper to apply `html_entity_decode()` to a value,
transforming HTML entity representations back into HTML special characters
(like `"` to `"`).
- HtmlentitiesViewHelper
- ViewHelper to apply `htmlentities()` escaping to a value,
transforming all HTML special characters to entity representations
(like `"` to `"`).
- HtmlViewHelper
- ViewHelper to render a string which can contain HTML markup
by passing it to a TYPO3 `parseFunc`. This can sanitize
unwanted HTML tags and attributes, and keep wanted HTML syntax and
take care of link substitution and other parsing.
- PaddingViewHelper
- ViewHelper to format a string to specific lengths, by using PHPs `str_pad` function.