Last active
December 15, 2015 21:23
-
-
Save sashas777/de35c9970bbcc9c5b38f to your computer and use it in GitHub Desktop.
Example of Observer usage in config.xml 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
<?xml version="1.0"?> | |
<config> | |
<global> | |
<events> | |
<customer_register_success> | |
<observers> | |
<example_customer_register_success> | |
<type>singleton</type> | |
<class>module/observer</class> | |
<method>customerRegisterSuccess</method> | |
</example_customer_register_success> | |
</observers> | |
</customer_register_success> | |
</events> | |
</global> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment