节点“兴趣” drupal中的通知
我的问题很简单(我认为),但找不到合适的模块。
我正在开发一个小型分类网站,其中有很多节点。我使用视图来显示它们。
我希望网站的任何(通过角色验证的)用户都能够单击“我感兴趣”之类的按钮,这将触发一个事件,执行各种操作,例如对该内容进行“更改一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用标记模块和规则模块
在您看来,您可以创建与标志的关系以允许使用其他“字段”。
使用规则,创建一个在标记(或取消标记)节点时触发的新规则。规则允许您执行以下两项操作:更改 CCK 字段并在事件发生时发送电子邮件。
演练:
然后,当用户单击“感兴趣”标志时,将填充一个字段并发送电子邮件。
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:
Then when a user clicks the "interested" flag a field will be populated and email sent.