rewrite - Magento: How can we override Enterprise files (Enterprise Edition)? -


how can override/rewrite enterprise class files/class (for enterprise edition of magento)?

i got it. it's similar core files in community edition.

just need see config.xml of enterprise core modules. put "enterprise" in front.

sample code override enterprise_giftregistry block:-

<blocks>         <enterprise_giftregistry>         <rewrite>                <customer_list>mynamespace_mymodule_block_myblock</customer_list>         </rewrite>     </enterprise_giftregistry> </blocks> 

thanks.


Comments