ViewHelper Documentation
be.security.ifHasRole
This view helper implements an ifHasRole/else condition for BE users/groups.
= Examples =
<f:be.security.ifHasRole role="Administrator">
This is being shown in case the current BE user belongs to a BE usergroup (aka role) titled "Administrator" (case sensitive)
</f:be.security.ifHasRole>
<f:be.security.ifHasRole role="1">
This is being shown in case the current BE user belongs to a BE usergroup (aka role) with the uid "1"
</f:be.security.ifHasRole>
<f:be.security.ifHasRole role="Administrator">
<f:then>
This is being shown in case you have the role.
</f:then>
<f:else>
This is being displayed in case you do not have the role.
</f:else>
</f:be.security.ifHasRole>
Arguments
then anySimpleType
Value to be returned if the condition if met.
else anySimpleType
Value to be returned if the condition if not met.
role string
The usergroup (either the usergroup uid or its title)