Please note that this documentation is for the most recent version of this extension. It may not be relevant for older versions. Related documentation can be found in the documentation directory of the extension.
Fluid conditions for frontend user groups
Use Fluid conditions (see below) to provide different functions or contents in fluid/HTML depending on the frontend usergroup:
<f:variable name="userGroup" value="Basis" />
<f:for each="{bookingObject.frontendUser.usergroup}" as ="group">
<f:if condition="{group.title} == 'Premium'">
<f:variable name="userGroup" value="Premium" />
</f:if>
<f:if condition="{group.title} == 'Premium Plus'">
<f:variable name="userGroup" value="Premium Plus" />
</f:if>
</f:for>
<!-- Alternative -->
<f:security.ifHasRole role="1">
This is being shown in case the current FE user belongs to a FE usergroup (aka role) with the uid "1"
</f:security.ifHasRole>
Documentation
TYPO3 Modules
Little helper for creating Backend modules in TYPO3.
We use cookies on our website. Some of them are essential, while others help us to improve this website and your experience. You can optionally decide which cookies or rather which use you approve to at any time under "cookies settings". You can find further information regarding this, as well as your constant right of cancellation under our
Data Protection Declaration. Our
Imprint can be found here.