次のように、プログラムでテンプレート ブロックが含まれているページがあります。
public function indexAction() {
$this->loadLayout();
$block = $this->getLayout()
->createBlock('core/template')
->setTemplate('somefolder/sometemplate.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();
}
sometemplate.phtml内に$this->getChildHtml('somechild')を入れて、別のブロックを挿入したいと思います。
私は試した
$box = $this->getLayout()
->createBlock('page/html')
->setTemplate('somefolder/somechild.phtml');
$block->append($box);
しかし、うまくいきませんでした。どうすればいいですか?