如何设置lesti:FPC使用动态模板?

时间:2014-07-26 03:45:47

标签: magento lesti-fpc

我想使用lesti:FPC和我开发的模块。

要启用SEO友好URL,对模块的所有请求都将发送到模块索引操作,并且动态加载模板。我如何制作lesti:在这种情况下FPC工作?

在模块布局文件(../layout/addon.xml)上我有:

<block type="addon/index" name="addon_index" template="addon/index.phtml"/>

在模块indexAction上我有:

if($condition)
{
  $this->getLayout()->getBlock('addon_index')->setTemplate('addon/a.phtml');
}
else
{
  $this->getLayout()->getBlock('addon_index')->setTemplate('addon/b.phtml');
}

会添加&#39; addon_index&#39;到了lesti:FPC布局处理足以让我的模块页面缓存?

1 个答案:

答案 0 :(得分:1)

Calling Dynamic Block in Lesti Fpc depends on conditions can be done using observer 

**Config.xml**

<frontend>
        <events>
            <core_block_abstract_to_html_before>
                <observers>
                    <atwix_test>
                        <type>model</type>
                        <class>namspace_test/observer</class>
                        <method>insertBlock</method>
                    </atwix_test>
                </observers>
            </core_block_abstract_to_html_before>
        </events>
    </frontend>

class Namespace_Test_Model_Observer
{
    public function insertBlock($observer)
    {
        /** @var $_block Mage_Core_Block_Abstract */
        /*Get block instance*/
        $_block = $observer->getBlock();
        /*get Block type*/
        $_type = $_block->getType();
       /*Check block type*/
        if ($_type == 'catalog/product_price') {
            /*Clone block instance*/
            $_child = clone $_block;
            /*set another type for block*/
            $_child->setType('test/block');
            /*set child for block*/
            $_block->setChild('child', $_child);
            /*set our template*/
            $_block->setTemplate('at.phtml');
        }
    }
}

最后,这是一个模板at.phtml代码:

echo $ this-&gt; getChildHtml('child');

希望它会对你有所帮助。