Where to find actual list of events for Magento 1.9? -


all links in google , magento extensions developer guide v.1.0 go http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/customizing_magento_using_event-observer_method broken now.

where actual list of observer events located?

there's way go this.

find mage.php file in app folder, it'll have following method in there:

public static function dispatchevent($name, array $data = array()) {     varien_profiler::start('dispatch event:'.$name);     $result = self::app()->dispatchevent($name, $data);     varien_profiler::stop('dispatch event:'.$name);     return $result; } 

as can see has profiler output events being dispatched on given page. forewarned, there's lot of them. duplicates too.

that said, if don't want turn on profiler (check index.php), can hack log call in there , check file. remember if this, remove log line when done.

beyond that, can't recommend link other answer added.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -