Reputation: 1919
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
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