Drupal:管理员/经理对用户的评论

发布于 2024-11-01 01:55:04 字数 139 浏览 1 评论 0原文

我正在寻找一种在 drupal 中让用户从管理员/经理那里获取评论的方法。我想要一个块,每个用户都可以看到经理对该用户的个人评论。只有管​​理员才能发表评论,并且只有评论的目标用户才能阅读评论。有没有一个模块或一个简单的方法可以做到这一点?任何想法都会很棒。 谢谢

I am looking for a way in drupal for users to get comments from the administrator/manager. I would like a block that each of the users sees with personal comments from the manager to that user. Only managers can make comments and only the user the comment is intended for can read the comment. Is there a module or an easy way to do this? Any ideas would be great.
Thanks

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

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

发布评论

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

评论(1

潜移默化 2024-11-08 01:55:04

您可以将问题分为两部分:

  1. 创建一个内容类型,该内容类型的创建/编辑权限仅限于管理员/经理角色,并且查看权限仅限于每个用户/每个节点。
  2. 创建一个块来过滤此类型的节点,以仅显示用户可以查看的节点。

这是我的假设方法:

  1. 为您的用户评论创建新的内容类型。
    • 使用nodeaccess 或content_access 提供对此类型的访问控制。两者都具有视图集成,并且正在积极移植到 D7。我推荐 content_access,因为它集成到 ACL 中,这是一个提供可重用访问控制 API 的不错的模块。
    • 使用 content_access,在内容类型的“访问控制”选项卡下“启用每个节点的访问控制设置”。这使管理员可以选择设置谁可以查看每条评论。
  2. 创建带有块显示的视图。过滤内容类型。不允许用户查看的评论应自动排除。

You can break the problem down into two parts:

  1. Create a content type that has create/edit permission restricted to an admin/manager role and has view permissions restricted on a per-user/per-node basis.
  2. Create a block that filters nodes of this type to only show ones that the user can view.

This is my hypothetical approach:

  1. Create a new content type for your user comments.
    • Use either nodeaccess or content_access to provide access control to this type. Both have views integration and are actively being ported to D7. I'd recommend content_access as it's integrated into ACL, a decent module that provides a reusable access control API.
    • Using content_access, "Enable per node access control settings" under the content type's "Access control" tab. This gives admins the option to set who can view each comment.
  2. Create a view with a block display. Filter for the content type. Comments that a user isn't allowed to view should automagically be excluded.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文