Config.xml 中前端的事件
在 config.xml 中,
可以放置在
、
或 中。 adminhtml>
.我们正在引导 Magento,并且因为我们正在引导,所以我在
中的事件不会触发。什么告诉magento 使用前端?
In config.xml, <events>
can be placed in either <global>
, <frontend>
or <adminhtml>
. We are bootstraping Magento, and because we are bootstrapping, the events that I have in <frontend>
do not fire. What tells magento to use the frontend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@ben 在此处给出了一个答复,恰好涵盖了这个问题。基本上,您需要指示 Magento 加载“区域”,以便它知道要实现哪些配置元素(包括事件)。当您点击 Magento 管理的页面时,会在
Mage::app()->run()
中自动为您执行此操作。@ben gave a response here that covers exactly this question. Basically, you need to instruct Magento to load an "Area" so that it knows what configuration elements (including events) to implement. When you hit a page managed by Magento, this is executed automatically for you in
Mage::app()->run()
.