Magento:我们如何覆盖企业文件(企业版)?

发布于 2024-11-04 04:23:31 字数 40 浏览 0 评论 0原文

我们如何覆盖/重写企业类文件/类(对于 Magento 企业版)?

How can we override/rewrite Enterprise class files/class (for Enterprise Edition of Magento)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千鲤 2024-11-11 04:23:31

我得到了它。这与我们在社区版中处理核心文件的方式类似。

只需查看任何 Enterprise 核心模块的 config.xml 即可。他们把“企业”放在前面。

覆盖 Enterprise_GiftRegistry 块的示例代码:-

<blocks>    
    <enterprise_giftregistry>
        <rewrite>
               <customer_list>MyNamespace_MyModule_Block_MyBlock</customer_list>
        </rewrite>
    </enterprise_giftregistry>
</blocks>

谢谢。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文