如何在magento中在控制器和观察者中呈现.phtml的内容

时间:2014-12-19 05:38:06

标签: magento renderer

我有观察员"checkout_cart_add_product_complete"

我想在cart.phtml

中的观察者和控制器中呈现/template/ajaxminicart/checkout/cart.phtml的内容

我该怎么做?

1 个答案:

答案 0 :(得分:2)

检查以下内容,

<?php
$newBlock =Mage::app()->getLayout()
->createBlock('checkout/cart')
->setTemplate('ajaxminicart/checkout/cart.phtml')
-->toHtml();
echo $newBlock;
?>