Drupal 6 - 检索可以编辑节点 x 或只是获取节点 x 上用户 y 的权限的用户列表
有人有什么想法吗?
我有点卡住了,试图让一个动作运行任意 php 以在最新版本发布时执行。我想做的是获取一个用户列表来通知更改,特别是有权编辑所述节点的用户。
现在,我已经让 $object
返回我的节点 id,所以我在那里一切都很好,并且我可以轻松获取用户列表,以便循环浏览它们并检查权限。困难之处在于权限检查本身。我尝试过的任何方法似乎都无法为用户 y 在节点 x 上提供“发布”或“更新”权限。
顺便说一句,我正在使用 nodeaccess 模块让个人用户访问特定节点,只是为了好玩。
Anyone got any ideas?
I'm a tad stuck, trying to make an action run arbitrary php to execute upon publication of the most recent revision. What I'm trying to do is get a list of users to notify about the change, specifically the users who have permission to edit said node.
Now I've got the $object
returning my node id so I'm fine there, and I can get a list of users easy enough to cycle through them and check permissions. The hard bit is the permission check itself. Nothing I've tried seems to be able to provide permissions for 'publish' or 'update' on node x for user y.
I'm using the nodeaccess module to give individual users access to specific nodes btw, just for fun.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果其他人为此苦苦挣扎,这就是我所做的。
If anyone else struggles with this, this is what I did.