我们如何在magento中创建自定义事件

时间:2014-05-14 18:22:10

标签: magento events

我是magento和magento的新手.Magento使用predispatch('event',array)方法预定义事件,但我需要在magento中创建自定义事件,然后如何在magento中创建自定义事件。

1 个答案:

答案 0 :(得分:0)

要收听事件,您需要创建一个带有事件观察者的自定义模块

Magento Developper’s Guide (Lesson 11) – Events and Observers in magento

Customizing Magento Using Event Observer

如果您想发送自己的活动

  

Mage :: dispatchEvent(&#39; some_event_handle&#39;,数组(&#39;客户&#39; =&gt; $ customer,&#39; order&#39; =&gt; $ order)); < / p>

然后创建一个自定义模块来监听此事件(some_event_handle),请参阅http://www.magentocommerce.com/boards/viewthread/3459/