ViewHelper Documentation
security.ifAuthenticated
This view helper implements an ifAuthenticated/else condition for FE users/groups.
= Examples =
<f:security.ifAuthenticated>
This is being shown whenever a FE user is logged in
</f:security.ifAuthenticated>
<f:security.ifAuthenticated>
<f:then>
This is being shown in case you have access.
</f:then>
<f:else>
This is being displayed in case you do not have access.
</f:else>
</f:security.ifAuthenticated>
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