如何覆盖 Magento 控制器?

发布于 2024-11-15 15:54:39 字数 202 浏览 6 评论 0原文

我需要使用服务器端代码检查结账/购物车页面上优惠券代码的有效性。

Magento 已经附带了类似的检查。但是,我需要添加一个来查看用户是否已连接:在 Magento 中扩展/覆盖该操作的最佳方式是什么?

我知道我可以将控制器 PHP 文件复制到 /app/code/local/ 文件夹树,但我想知道是否有更好的方法来做到这一点。

I need to check the validity of a coupon code on the checkout/cart page with server-side code.

Magento already ships with a similar check in place. However, I need to add one to see if a user is connected or not: what would be the best way to extend/override that action in Magento?

I know I can copy the controller PHP file to the /app/code/local/ folder tree, but I'm wondering whether there's a better way to do it.

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

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

发布评论

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

评论(1

梦毁影碎の 2024-11-22 15:54:39

在我看来,除了修改 core 之外的任何事情都是好的。话虽如此,使用 config.xml 创建一个带有控制器目录等的简单模块:

<config>
    <frontend>
        <routers>
            <checkout>
                <args>
                    <modules>
                         <My_Module before="Mage_Checkout">My_Module_Checkout</My_Module>
                    </modules>
                </args>
            </checkout>
        </routers>
    </frontend>
</config>

有关如何扩展前端控制器的更多详细信息,请参阅此处:
http://prattski.com/2010/06/24 /magento-overriding-core-files-blocks-models-resources-controllers/

Anything besides modifying the core is good in my opinion. With that said create a simple module with a controllers directory and etc with config.xml:

<config>
    <frontend>
        <routers>
            <checkout>
                <args>
                    <modules>
                         <My_Module before="Mage_Checkout">My_Module_Checkout</My_Module>
                    </modules>
                </args>
            </checkout>
        </routers>
    </frontend>
</config>

See here for more details on how to extend the frontend controller:
http://prattski.com/2010/06/24/magento-overriding-core-files-blocks-models-resources-controllers/

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