17 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
18 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
19 use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
79 use CompileWithRenderStatic;
95 $this->registerArgument(
'currencySign',
'string',
'The currency sign, eg $ or €.',
false,
'');
96 $this->registerArgument(
'decimalSeparator',
'string',
'The separator for the decimal point.',
false,
',');
97 $this->registerArgument(
'thousandsSeparator',
'string',
'The thousands separator.',
false,
'.');
98 $this->registerArgument(
'prependCurrency',
'bool',
'Select if the currency sign should be prepended',
false,
false);
99 $this->registerArgument(
'separateCurrency',
'bool',
'Separate the currency sign from the number by a single space, defaults to true due to backwards compatibility',
false,
true);
100 $this->registerArgument(
'decimals',
'int',
'Set decimals places.',
false, 2);
101 $this->registerArgument(
'useDash',
'bool',
'Use the dash instead of decimal 00',
false,
false);
113 public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
115 $currencySign = $arguments[
'currencySign'];
116 $decimalSeparator = $arguments[
'decimalSeparator'];
117 $thousandsSeparator = $arguments[
'thousandsSeparator'];
118 $prependCurrency = $arguments[
'prependCurrency'];
119 $separateCurrency = $arguments[
'separateCurrency'];
120 $decimals = $arguments[
'decimals'];
121 $useDash = $arguments[
'useDash'];
123 $floatToFormat = $renderChildrenClosure();
124 if (empty($floatToFormat)) {
125 $floatToFormat = 0.0;
127 $floatToFormat = (float)$floatToFormat;
129 $output = number_format($floatToFormat, $decimals, $decimalSeparator, $thousandsSeparator);
131 if ($useDash && $floatToFormat === floor($floatToFormat)) {
132 $output = explode($decimalSeparator,
$output)[0] . $decimalSeparator .
'—';
135 if ($currencySign !==
'') {
136 $currencySeparator = $separateCurrency ?
' ' :
'';
137 if ($prependCurrency ===
true) {