Magento - 在多个页面中显示模块块

发布于 2024-10-31 15:58:09 字数 86 浏览 0 评论 0原文

我创建了一个带有块的模块,我想在多个页面中显示该块;例如:购物车,右栏,以及没有商品的购物车。

我怎样才能做到这一点?

谢谢。

i have created a module with a block that I want to show in many pages; for example : shopping cart, right column, and shopping cart with no-items.

How can I do that ?

Thanks.

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

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

发布评论

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

评论(1

趴在窗边数星星i 2024-11-07 15:58:09

将块添加到布局中任何您想看到的位置。您可以向任何句柄添加块,如下所示:

<layout_handle>
    <reference name="parent_block_name">
        <block type="yourmodule/your_block_handle" name="block.name" template="path/to/template.phtml" />
    </reference>
</layout_handle>

没有理由不能对多个布局句柄执行此操作。

Add the block to your layout wherever you want to see it. You can add a block to any handle like this:

<layout_handle>
    <reference name="parent_block_name">
        <block type="yourmodule/your_block_handle" name="block.name" template="path/to/template.phtml" />
    </reference>
</layout_handle>

There's no reason you cannot do this for several layout handles.

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