Created
December 15, 2015 21:31
-
-
Save sashas777/896ac92c556966fa64e6 to your computer and use it in GitHub Desktop.
Example of Observer.php file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Namespace_Module_Model_Observer { | |
public function customerRegisterSuccess(Varien_Event_Observer $observer) { | |
$customer=$observer->getCustomer(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment