Magento将内容设置为行动

时间:2014-07-13 21:41:21

标签: magento controller set

我对Magento来说很新鲜

我正在创建重定向到PaymentController的付款模块

我有redirectAction

我需要解决一个简单的任务:

我需要在

中显示.phtml文件中的内容
$this->loadLayout();
    $cmsBlock = $this->getLayout()->createBlock('cms/block')->setBlockId('cms_block_fail');

    $this->getLayout()->getBlock('content')->append($cmsBlock);

    $this->renderLayout();
    return $this;

没有任何东西出现

我只需要在主站点布局中显示一些html

1 个答案:

答案 0 :(得分:1)

  

使用注册表将数据传递给模板。

在控制器上创建注册表并显示到phtml文件中。

检查以下链接如何创建注册表: - http://blog.chapagain.com.np/magento-how-to-set-and-get-registry/