Magento XML $ this-> getChildHtml()是否必要?

时间:2012-06-04 22:56:12

标签: xml magento php

我编辑了以下文件,将简报移到页脚而不是侧边栏

app/design/frontend/base/default/layout/newsletter.xml

我更改了以下代码:

<reference name="left">
        <block type="newsletter/subscribe" name="left.newsletter" template="newsletter/subscribe.phtml"/>
    </reference>

为:

<reference name="footer">

为什么我不需要添加

$this->getChildHtml('newsletter')

或类似于footer.phtml? 我不确定何时使用getChildHtml()以及何时不使用。 this article的练习#2中是否需要执行所有步骤? 感谢。

1 个答案:

答案 0 :(得分:7)

如果您查看page/html/footer.phtml,这是页脚块的模板

<div class="footer-container">
    <div class="footer">
        <?php echo $this->getChildHtml() ?>
        <p class="bugs"><?php echo $this->__('Help Us to Keep Magento Healthy') ?> - <a href="http://www.magentocommerce.com/bug-tracking" onclick="this.target='_blank'"><strong><?php echo $this->__('Report All Bugs') ?></strong></a> <?php echo $this->__('(ver. %s)', Mage::getVersion()) ?></p>
        <address><?php echo $this->getCopyright() ?></address>
    </div>
</div>

您可以看到他们使用以下PHP输出子块

<?php echo $this->getChildHtml() ?>

如果在没有参数的情况下调用getChildHtml,则会输出已添加的任何块。这就是为什么您不需要将自己的电话包含在$this->getChildHtml('newsletter')