How can we overrid开发者_StackOverflowe/rewrite Enterprise class files/class (for Enterprise Edition of Magento)?
I got it. It's similar to what we do with core files in Community Edition.
Just need to see the config.xml of any Enterprise core modules. They put "enterprise" in front.
Sample code to override Enterprise_GiftRegistry Block:-
<blocks>
<enterprise_giftregistry>
<rewrite>
<customer_list>MyNamespace_MyModule_Block_MyBlock</customer_list>
</rewrite>
</enterprise_giftregistry>
</blocks>
Thanks.
精彩评论