typoscript - TYPO3 - No inheritance of access rights possible via fluid -
via it's possible give fe_user access content if fe_group she/he belongs has subgroup fe_group defined group having access content. so e.g. if define 'product group 02' (uid=2) should have access specific content via be, fe_user belongs 'user group 03' (uid=6), has subgroup 'product group 02' (uid=2), fe_user can access content. fe_groups setup: uid|title|subgroup 1|product group 01| 2|product group 02| 3|product group 03| 4|user group 01|1 5|user group 02| 6|user group 03|2,3 but if define directly in fluidtemplate {f:cobject(typoscriptobjectpath: 'lib.usergroup')} == '2' should have access content , subsequently 'user group 03', mentioned fe_user can't access it: typoscript: lib.usergroup = text lib.usergroup.data = tsfe:fe_user|user|usergroup partial.html <f:if condition="{f:cobject(typoscriptobjectpath: 'lib.usergroup')} == '2'"> ... </f:if> // ... of course, if fe_use...