Drupal 6 定制双模块冲突

发布于 2024-12-28 10:08:59 字数 386 浏览 0 评论 0原文

我正在使用 自动分配角色 模块将 编辑 角色分配给任何通过“创建新帐户”链接注册的人。这很好用。

但是,editor 角色的用户可以创建不同角色类型的其他用户。为此,我使用 uCreate 模块。

问题是当编辑者创建用户时,该用户也会获得编辑者角色。

我研究了许多挂钩来以编程方式删除不需要的角色,但没有成功。我该如何解决这个问题?

I am using the auto assign role module to assign the role of editor to anyone registering via the "create new account" link. This works just fine.

However, users of the editor role can create other users of different role types. To do this I am using the uCreate module.

The problem is when an editor creates a user, that user also gets the editor role.

I have looked into a number of hooks to programmatically remove the unwanted role but without success. How might I resolve this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落叶缤纷 2025-01-04 10:08:59

当“编辑角色”用户通过“uCreate模块”创建用户时,hook_user被调用驻留在“自动分配角色模块”中,这就是问题所在。

“ucreate module line:299”中的 user_save 函数在“自动分配 role.module 文件”第 155 行中使用“insert”参数调用 hook_user。

case 'insert':
// 如果这是创建帐户的管理员,则仅使用 auto_assign if
// 由 auto_admin_active 允许
if (arg(0) == 'admin' && _autoassignrole_get_settings('auto_admin_active') == 0) {
返回;
}

这里的代码检查它是否是管理员用户,如果不是管理员那么它将为该用户分配编辑者角色。

相反,您可以创建自定义模块并实现 hook_user 并在插入用户时更改角色。有关更多信息,请参阅 drupal 6 中的 user_save

When the "editor role" users creates the users by "uCreate module", the hook_user is being called reside in "auto assign role module", This is the problem.

The user_save function from "ucreate module line:299" call the hook_user with "insert" parameter in "auto assign role.module file", line no 155.

case 'insert':
// If this is an administrator creating the account only use auto_assign if
// allowed by auto_admin_active
if (arg(0) == 'admin' && _autoassignrole_get_settings('auto_admin_active') == 0) {
return;
}

Here the code check whether it is admin user, If it is not admin then it will assign editor role to that user.

Instead you can create a custom module and implement hook_user and change the role when a user are inserted.For more info please refer user_save in drupal 6

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文