我使用模块在 BE typo3 中显示数组。我知道可以根据用户组限制对该模块的访问。 我想知道是否可以根据用户组限制表中字段的显示,以及如何做到这一点?
感谢您的反馈
当然,您可以,在用户组访问列表选项卡中,您可以允许每个表的排除字段 - 您必须首先在 TCA 中设置排除属性。
因此,逻辑是限制对 TCA 中属性的访问,并仅允许特定组访问这些属性。
https://docs.typo3.org/m/typo3/reference-inside/8.7/en-us/CoreArchitecture/AccessControl/AccessControlOptions/Index.html
另一种解决方案是使用TSConfig(用户组中的"选项"选项卡(并禁用某些属性,例如:
TCEFORM.pages.title {
# The title field of the pages table is not editable
disabled = 1
}
请参阅:https://docs.typo3.org/m/typo3/reference-tsconfig/master/en-us/PageTsconfig/TceForm.html