我在创建块或调用块时感到困惑。在 phtml 文件中假设在 footer.phtml 文件中如果我想调用一个静态块然后我写
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('static_block_name')->toHtml(); ?>
和时事通讯(在我的主题文件夹中的模板文件夹中)
<?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter/subscribe.phtml')->toHtml(); ?>
那么我应该在 footer.phtml 中写什么来调用内置块(位于基本文件夹中),如日历、验证码等?请告诉我如何在 phtml 文件和 xml 文件中调用它们。
请告诉我
1. <?php echo $this->getLayout()->createBlock('**?**')->setTemplate('**?**')->toHtml(); ?>
2. xml block code and where to put the code
3. rules to write block type and name.
-谢谢。