Magento:如何将小部件放入布局xml?

时间:2010-06-22 16:09:41

标签: php xml widget magento

我正在使用Magento Enterprise Edition。它包括一个横幅小部件,我想在我的模板中使用它,而不是从CMS运行的内容块内部。我成功地从内容块内部生成输出:

{{widget type="enterprise_banner/widget_banner" display_mode="fixed" rotate="series" banner_ids="4" template="banner/widget/block.phtml" unique_id="744a56c9a042cc9fa166163c12d869d9"}}

足够简单。所以在我的布局xml中,我尝试了这个:

<block type="enterprise_banner/widget_banner" name="hero_banners" as="hero_banners" display_mode="fixed" rotate="series" banner_ids="4" template="banner/widget/block.phtml" unique_id="744a56c9a042cc9fa166163c12d869d9" />

相同的参数;我只是添加了名字和as。然后,在我的模板中......

<?php echo $this->getChildHtml('hero_banners'); ?>

但我没有输出。探查器指出已加载hero_banners块,但其模板文件(banner / widget / block.phtml)永远不会运行。

有人知道我做错了吗?

-P

2 个答案:

答案 0 :(得分:19)

事实证明,它没有插入任何有意义的数据,因为它没有接收到它的参数。它需要通过动作标签设置非标准参数:

<block type="enterprise_banner/widget_banner" name="hero_banners" as="hero_banners" template="banner/widget/hero.phtml">
    <action method="setDisplayMode"><value>fixed</value></action>
    <action method="setBannerIds"><value>4</value></action>
</block>

答案 1 :(得分:2)

由于该主题已经解决,我有一个非主题解决方案

如果需要,可以将其设置为.phtml文件中的块。

<?php echo $this->getLayout()->createBlock('enterprise_banner/widget_banner')->setBannerIds('4')->setDisplayMode('fixed')->setTemplate('banner/widget/block.phtml')->toHtml(); ?>