Actions
Bug #82731
closedallow 'value'-argument for inline-usage of <f:format.number>
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2017-10-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Viewhelper won't work inline, because you can't give a number to the inline-version.
add the following line in the method initializeArguments of the viewhelper
$this->registerArgument('value', 'string', 'The value, which should be converted', false, '');
replace in method renderStatic
$stringToFormat = $renderChildrenClosure();
with
$stringToFormat = (isset($arguments['value']) ? $arguments['value'] : $renderChildrenClosure());
Actions