ViewHelper Documentation
v:condition.context.isCli
Condition: Is context CLI?
A condition ViewHelper which renders the then
child if
current context being rendered is CLI.
Examples
<!-- simple usage, content becomes then-child -->
<v:condition.context.isCli>
Hooray for CLI contexts!
</v:condition.context.isCli>
<!-- extended use combined with f:then and f:else -->
<v:condition.context.isCli>
<f:then>
Hooray for CLI contexts!
</f:then>
<f:else>
Maybe BE, maybe FE.
</f:else>
</v:condition.context.isCli>
Arguments
then anySimpleType
Value to be returned if the condition if met.
else anySimpleType
Value to be returned if the condition if not met.
condition boolean
Condition expression conforming to Fluid boolean rules