Magento-从一个布局文件调用另一个布局


Magento - Calling another layout from one layout file

在Magento上,如果我在PHTML文件上有类似的东西:

$this->getChildHtml('myblock');

如何在不使用块的情况下设置布局模板文件?我想在PHTML内部使用"getChildHtml()"直接调用另一个PHTML文件。

或者在块内部放入什么来设置模板文件?

<block type="module/some_path" name="some_path.something" template="xxx.phtml">
                                <reference name="myblock">
                                    <template>xxxx.phtml</template>
                                </reference>                                
</block>

catalog/product/popupler.phtml在哪里设置模块文件路径

<?php echo $this->getLayout()->createBlock('core/template')->
           setTemplate('catalog/product/popular.phtml')->toHtml(); ?>