节点“兴趣” drupal中的通知

发布于 2024-10-20 14:29:25 字数 206 浏览 1 评论 0原文

我的问题很简单(我认为),但找不到合适的模块。

我正在开发一个小型分类网站,其中有很多节点。我使用视图来显示它们。

我希望网站的任何(通过角色验证的)用户都能够单击“我感兴趣”之类的按钮,这将触发一个事件,执行各种操作,例如对该内容进行“更改一个 cck 字段” -键入并发送电子邮件给分类的作者。

非常简单,但不知道从哪里开始,我应该使用哪个模块?

My question is quite simple (i think) but cannot find the right module for that.

I'm working on a small classified website in which i have a bunch of nodes. I display them using views.

I'd like for any (authenticated with role) user of the website to be able to click on a kind of button like "I'm interested" which will trigger an event doing various actions like 'changing one cck field' on that content-type and also send an e-mail to the author of the classified.

Pretty straight forward but no clue on where to start, which module should i use ?

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

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

发布评论

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

评论(1

十秒萌定你 2024-10-27 14:29:25

为此,您可以使用标记模块规则模块

在您看来,您可以创建与标志的关系以允许使用其他“字段”。

使用规则,创建一个在标记(或取消标记)节点时触发的新规则。规则允许您执行以下两项操作:更改 CCK 字段并在事件发生时发送电子邮件。

演练:

  1. 安装并启用标记模块和规则模块
  2. 在“admin/build/flags”创建一个新标志
  3. 编辑/创建分类视图,添加与Flags: Node Flag的关系,然后选择>您刚刚创建的标志的名称。
  4. 在“字段”下添加标记:标记链接并根据需要进行配置
  5. 在“admin/rules/trigger/add”中为事件添加新规则节点已被标记,
    在“标志名称”下
  6. 在标题 CCK 下添加要执行的填充字段操作
  7. 系统标题下添加要执行的向用户发送邮件的操作
    并配置您所需的设置。

然后,当用户单击“感兴趣”标志时,将填充一个字段并发送电子邮件。

For this, you can use the Flag Module and Rules Module

In your view, you can create a relationship to flags to allow the use of other 'fields'.

Using Rules, create a new rule that is triggered when a node is flagged (or unflagged). Rules allows you to do both: changing a CCK field and sending out emails when an event occurs.

Walk-through:

  1. Install and enable the Flag Module and Rules Module
  2. Create a new flag at "admin/build/flags"
  3. Edit/Create you classified view, add a relationship to Flags: Node Flag and choose > the name of the flag you just created.
  4. Under "fields" add Flags: Flag link and configure as you like
  5. Add a new rule at "admin/rules/trigger/add" for the event A node has been flagged,
    under "FLAG NAME"
  6. Add action to perform of Populate a field under the heading CCK
  7. Add action to perform of Send a mail to a user under the heading System
    and configure your desired settings.

Then when a user clicks the "interested" flag a field will be populated and email sent.

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