我为 Drupal 编写了一个模块,我有一些字段(按钮,图像,文本)。
我希望普通用户可以隐藏某些字段,并在管理员允许时为用户打开。
此功能是使用“字段权限”模块实现的。我不知道如何在我的模块中编写PHP代码,所以我可以使用“Field Permission”模块更改权限吗?
答案 0 :(得分:0)
在您的模块中,您可以根据以下角色设置这些字段的#access:
$roleId = The role id;
// If user doesn't have the role he can't access the field .
if (isset($user->roles[$roleId])) {
// Deny access to the field.
$form['FIELD_NAME']['#access'] = FALSE;
}