Actions
Feature #86875
closedFeature request: Fall through for f:switch ViewHelper
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2018-11-07
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
A fall throug option for f:switch viewhelper would be a very nice to have.
Something like:
<f:switch expression="{expr}">
<f:case value="val1"/>
<f:case value="val2"/>
<f:case value="val3">
on one of this cases
</f:case>
<f:case value="val4">
on val4
</f:case>
<f:defaultCase>
default
</f:case>
</f:switch>
Or maybe
<f:switch expression="{expr}">
<f:case value="val1" fallthrough="val3"/>
<f:case value="val2" fallthrough="val3"/>
<f:case value="val3">
on one of this cases
</f:case>
<f:case value="val4">
on val4
</f:case>
<f:defaultCase>
default
</f:case>
</f:switch>
that would help in many cases where the same result should come out.
Actions