Magento 哪个事件被称为?需要建立一个观察者

发布于 2024-11-29 02:04:43 字数 362 浏览 1 评论 0原文

我需要在 Magento 中创建一个观察者,用于侦听有人重新索引目录搜索索引时调用的事件。

那么,当有人索引目录搜索索引时会调用哪个事件?谢谢?

编辑: 我正在看这个事件: Catalogindex_plain_reindex_after

这是正确的吗?

http://www.magentocommerce.com/wiki/5__-_modules_and_development/reference/events

I need to create an observer in Magento that listens for the event that is called when someone re-indexes the Catalog Search Index.

So which event is called when someone indexes Catalog Search Index? Thanks?

Edit:
I am looking at the event:
catalogindex_plain_reindex_after

Would this be the correct one?

http://www.magentocommerce.com/wiki/5_-_modules_and_development/reference/events

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

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

发布评论

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

评论(2

心凉怎暖 2024-12-06 02:04:43

如果您需要某个页面上的观察者,您可以取消注释index.php中的Varien_Profiler并在配置的开发人员部分中启用它。启用后,您应该会在页面底部看到一个表格,其中包含该页面上发生的所有情况。查找调度事件:

If you need an observer on a certain page, you can uncomment the Varien_Profiler in index.php and enable it in the Developer section of the config. Once it is enabled you should see a table on the bottom of your page with everything that happened on that page. Look for DISPATCH EVENT:.

遗心遗梦遗幸福 2024-12-06 02:04:43

我建议从命令行运行这个 grep 并构建一个事件 txt 文件,其中包含您可以挂钩的可用事件。您链接的该列表可能相当过时。

grep -r Mage::dispatchEvent /path/to/your/Magento/* >事件.txt

I would recommend running this grep from command line and building out an events txt file of available events you can hook into. That list may be pretty dated you linked.

grep -r Mage::dispatchEvent /path/to/your/Magento/* > events.txt

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