20 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
21 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
22 use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
86 use CompileWithRenderStatic;
102 $this->registerArgument(
'maxCharacters',
'int',
'Place where to truncate the string',
true);
103 $this->registerArgument(
'append',
'string',
'What to append, if truncation happened',
false,
'…');
104 $this->registerArgument(
'respectWordBoundaries',
'bool',
'If TRUE and division is in the middle of a word, the remains of that word is removed.',
false,
true);
105 $this->registerArgument(
'respectHtml',
'bool',
'If TRUE the cropped string will respect HTML tags and entities. Technically that means, that cropHTML() is called rather than crop()',
false,
true);
116 public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
118 $maxCharacters = $arguments[
'maxCharacters'];
119 $append = $arguments[
'append'];
120 $respectWordBoundaries = $arguments[
'respectWordBoundaries'];
121 $respectHtml = $arguments[
'respectHtml'];
123 $stringToTruncate = $renderChildrenClosure();
132 $contentObject = GeneralUtility::makeInstance(ContentObjectRenderer::class);
134 $content = $contentObject->cropHTML($stringToTruncate, $maxCharacters .
'|' . $append .
'|' . $respectWordBoundaries);
136 $content = $contentObject->crop($stringToTruncate, $maxCharacters .
'|' . $append .
'|' . $respectWordBoundaries);