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 string
Value to be returned if the condition if met.
else string
Value to be returned if the condition if not met.