Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 find any event that is fired upon a new customer registration.

Does anybody know of an event that is dispatched for that?

share|improve this question

13 Answers

Whenever I'm looking for an event, I'll temporarily edit the Mage.php file to output all the events for a particular request.

File: app/Mage.php
public static function dispatchEvent($name, array $data = array())
{
    Mage::log('Event: ' . $name); //not using Mage::log, as 
    //file_put_contents('/tmp/test.log','Dispatching '. $name. "\n",FILE_APPEND); //poor man's log
    Varien_Profiler::start('DISPATCH EVENT:'.$name);
    $result = self::app()->dispatchEvent($name, $data);
    #$result = self::registry('events')->dispatch($name, $data);
    Varien_Profiler::stop('DISPATCH EVENT:'.$name);
    return $result;
}

and then perform whatever action it is I'm trying to hook into. Magento events are logically named, so scanning/sorting through the resulting logs usually reveals what I'm after.

share|improve this answer
2  
Definitely helpful, no doubt. However, I would still like an answer to my question, so I will not consider this an answer. – Prattski Jun 3 '10 at 18:38
2  
You're welcome? – Alan Storm Jun 3 '10 at 18:52
1  
Thanks Alan. I said it was helpful, but ultimately you didn't actually answer the question. It's you asking me what color of Green to use, and I tell you to use Sherman Williams glossy. It's helpful, but not an actual answer to the question. – Prattski Jun 3 '10 at 19:24
4  
It is if you have the Sherman Williams glossy sitting right next to you – Alan Storm Jun 4 '10 at 3:44
Also, I feel this answer is above and beyond. It not only answers your question but helps you to not have to ever ask a similar one again. "Give a man a fish, feed him for a day. Teach him to fish, feed him forever" – Bill Garrison May 7 at 13:33

I'm sure this is way too late for your original need, but I'm pleased to report that I discovered how to achieve this today for another client request. It involves using one of the generic controller events. This node in the config.xml will hook into the right event:

<events>
 ....
  <controller_action_postdispatch_customer_account_createPost>
    <observers>
     <your_module_here>...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.

HTH, JD

share|improve this answer
2  
It failed for me with the camelCase "createPost", but when changed to controller_action_postdispatch_customer_account_createpost this worked swell. Thanks! – thaddeusmt Jun 6 '11 at 22:20
This is definitely helpful. Just a quick question. Observer gets called after the execution of action or before it??thanks – SAM Jun 30 '11 at 14:16
@SAM - "postDispatch" means after the Action has completed. "preDispatch" is before. You can choose to bind your Observer to either Event. – Jonathan Day Jun 30 '11 at 22:20
@jonathan, this is really a great help. Many Thanks. – SAM Jul 1 '11 at 10:37
1  
this does not trigger when registering in checkout process – wutzebaer Nov 8 '12 at 10:42
show 1 more comment

customer_register_success is what you are looking for:

<config>
  <frontend>
    <events>
      <customer_register_success>
        <observers>
          <your_module>
            <type>singleton</type>
            <class>your_module/observer</class>
            <method>yourMethod</method>
          </your_module>
        </observers>
      </customer_register_success>
    </events>
  </frontend>
</config>
share|improve this answer

You can try customer_save_after, the only thing that the registration sends this event twice

share|improve this answer
it seems that customer_save_after always gets called twice, whether its on registration or any other action. – Jonathan Day Jun 30 '11 at 22:21

You have to consider also when the user register on-the-fly on checkout: a Register on chekout. Thinking on this case, you can catch the "checkout_type_onepage_save_order_after" event with your own Observer class, and then this code...


if($observer->getEvent()->getQuote()->getCheckoutMethod(true) == Mage_Sales_Model_Quote::CHECKOUT_METHOD_REGISTER){
    (...)
}

Anybody may say: Mage_Sales_Model_Quote->getCheckoutMethod() is deprecated since 1.4!!,but:

  • If we call the ortodox method Mage_Checkout_Model_Type_Onepage->getCheckoutMethod(), waiting for something as "METHOD_REGISTER" this is executed:

    if ($this->getCustomerSession()->isLoggedIn()) {
                return self::METHOD_CUSTOMER;
            }

    ... "METHOD_CUSTOMER" is the name for a checkout with an already registrated user, not our case.... but yes!, because....

  • ...the registration operation is perfomed before "checkout_type_onepage_save_order_after" event. Then we a have a METHOD_CUSTOMER now. Ups, something inconsistent?

  • Fortunatly, the Quote remains with the original value: CHECKOUT_METHOD_REGISTER

    Any other idea for the registration on checkout?

  • share|improve this answer

    There isn't a direct event for this, but you could use the customer_save_commit_after event. This event also guarantees you that the customer is save in the shop's database. The problem with this event is that is triggered twice. Bellow is an hack that allows you to use this event - the observer function is listed:

    public function customer_save_commit_after($p_oObserver) {
    
        $l_oCustomer = $p_oObserver->getCustomer();
    
        if ($l_oCustomer->isObjectNew() && !$l_oCustomer->getMyCustomKeyForIsAlreadyProcessed()) {
            $l_oCustomer->setMyCustomKeyForIsAlreadyProcessed(true);
            // new customer
        }
        else {
            // existing customer
        }
    
        return false;
    
    }
    

    Hope this helps someone!

    share|improve this answer

    Actually there are customer_save_after and customer_save_before (magento 1.5)

    If you want to modify on-the-fly some data after form post, pick customer_save_before, change the data you want and that's all (the save action come after, so your change will be taken into account).

    $customer->save() just doesn't work in customer_save_after. (fatal error) Use this observer to run a code after customer creation which are NOT related to customer data.

    Hope that helps!

    share|improve this answer

    I've discovered that the customer_login and customer_session_init events are both thrown on account create. You could register a listener for either and then check to see the create date on the account?

    share|improve this answer

    I was looking of the same thing. I believe the event is customer_register_success.

    You can find a link for all events at: http://www.nicksays.co.uk/magento_events_cheat_sheet/

    share|improve this answer

    customer_save_after is the event which gets called after a new customer registration.

    Read about all the events here:

    http://www.magentocommerce.com/wiki/5_-_modules_and_development/reference/events

    share|improve this answer

    You can use the customer_register_success event. It is triggered after the customer is succesfully created. Here is the link of event cheat sheets. Hope it also helps you.

    http://www.nicksays.co.uk/magento-events-cheat-sheet-1-7/
    
    share|improve this answer
    up vote -1 down vote accepted

    The answer to this question is that there isn't an event for that.

    share|improve this answer
    1  
    Turns out that you can hook into a specific event, see my new post for details. – Jonathan Day Oct 14 '10 at 21:13
    @Prattski: +1. Thank you for actually answering the question, and not polluting this question with an alternative solution that isn't modular (like all these controller observers). – JMTyler May 7 at 20:59

    event name:customer_registration_is_allowed

    I'm not sure if this is you want,you can write a observer to test

    share|improve this answer

    Your Answer

     
    discard

    By posting your answer, you agree to the privacy policy and terms of service.

    Not the answer you're looking for? Browse other questions tagged or ask your own question.