授予非管理员用户访问模板模块的权限
Giving no-admin users access to Template module
我正在设置一个 TYPO3 网站,我需要授予用户组查看和编辑 Template
模块的权限。
在 TYPO3 文档中我找到了以下信息:
If you cannot see the Template module, it may be that you are not
logged in as an administrator. Please change user and make sure you
use one with administrator rights.
没有解决方法可以让后端用户访问模板
模块 ?
除了你的xclass核心方法,没有其他可能。
或许还有其他方法可以解决您的问题。
请说明为什么编辑者应该有权访问模板模块。
我能够让非管理员访问 "Web -> Template" 模块
typo3\sysext\frontend\Configuration\TCA\sys_template.php
更改第 16 行:
'adminOnly' => true,
到
'adminOnly' => false,
现在,您可以编辑后端用户组并选中 Tables (listing)
和 Tables (modify)
上的选项 Template [sys_template]
我正在设置一个 TYPO3 网站,我需要授予用户组查看和编辑 Template
模块的权限。
在 TYPO3 文档中我找到了以下信息:
If you cannot see the Template module, it may be that you are not logged in as an administrator. Please change user and make sure you use one with administrator rights.
没有解决方法可以让后端用户访问模板 模块 ?
除了你的xclass核心方法,没有其他可能。
或许还有其他方法可以解决您的问题。
请说明为什么编辑者应该有权访问模板模块。
我能够让非管理员访问 "Web -> Template" 模块
typo3\sysext\frontend\Configuration\TCA\sys_template.php
更改第 16 行:
'adminOnly' => true,
到
'adminOnly' => false,
现在,您可以编辑后端用户组并选中 Tables (listing)
和 Tables (modify)
Template [sys_template]