Magento 中的属性更改时如何通知某些用户?

发布于 2024-10-25 03:48:31 字数 155 浏览 2 评论 0原文

当编辑和保存产品并且一个给定属性已更改时,我需要通知用户组。

假设我有一个属性 is_new 设置为 false,如果管理员更新产品,我需要挂钩该属性已更改并通过电子邮件通知“订阅者”组。

有什么想法吗?

I need to notify on group of user when a product is edited and saved and one given attribute has been changed.

Let's say I've an attribute is_new sets to false, if an admin update the product, I need to hook that this attribute has been changed and notify via emails the group "subscribers".

Any ideas?

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

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

发布评论

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

评论(1

挽容 2024-11-01 03:48:31

您可以使用事件来完成此操作,magento wiki 中有一些有关如何创建事件的基本信息:

http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/customizing_magento_using_event-observer_method

您需要的事件可能是catalog_product_save_before或catalog_product_save_after,具体取决于您如何设置代码。

You can do this with events, there's some basic information on how to create events in the magento wiki:

http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/customizing_magento_using_event-observer_method

The event you need is probably catalog_product_save_before or catalog_product_save_after, depending on how you setup the code.

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