17 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
18 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
19 use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
50 use CompileWithRenderStatic;
66 $this->registerArgument(
'decimals',
'int',
'The number of digits after the decimal point',
false,
'2');
67 $this->registerArgument(
'decimalSeparator',
'string',
'The decimal point character',
false,
'.');
68 $this->registerArgument(
'thousandsSeparator',
'string',
'The character for grouping the thousand digits',
false,
',');
81 public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
83 $decimals = $arguments[
'decimals'];
84 $decimalSeparator = $arguments[
'decimalSeparator'];
85 $thousandsSeparator = $arguments[
'thousandsSeparator'];
87 $stringToFormat = $renderChildrenClosure();
88 return number_format((
float)$stringToFormat, $decimals, $decimalSeparator, $thousandsSeparator);