Is there an event for customer account registration in Magento?

后端 未结 17 2035
轻奢々
轻奢々 2020-12-04 17:23

I would like to be able to run some functionality with a module that I am building whenever a customer registers an account, but I can\'t seem to f

17条回答
  •  广开言路
    2020-12-04 17:35

    I discovered how to achieve this today. It involves using one of the generic controller events. This node in the config.xml will hook into the right event:

    
     ....
      
        
         ...etc
    

    The controller_action_postdispatch_REQUESTPATH event is thrown for every controller that extends Mage_Core_Controller_Front_Action (which is basically all of them) which makes it very easy to target. Ditto for controller_action_predispatch_REQUESTPATH.

提交回复
热议问题