Ricky Sharma
Ricky Sharma

Reputation: 1919

To find which events have been fired

How one can check the list of all the fired events in Magento during a http request? Also, there so many of them how can we check if that event has already been declared before or not.Thanks

Upvotes: 1

Views: 879

Answers (1)

Pavel Novitsky
Pavel Novitsky

Reputation: 1694

Mage::dispatchEvent() fires 2 profiler calls. So you can enable magento profiling and it will show you all dispatched events.

Also you can look at Developer Helper extension to get list of all defined in config.xml observers.

Upvotes: 2

Related Questions