Magento - 如何将Mageworx下载块置于magento之外?

时间:2015-06-11 08:26:53

标签: php magento

如何将Mageworx下载块置于magento之外?

例如:

{{block type="downloads/link" id="5,6,7" title="Files"}}

1 个答案:

答案 0 :(得分:1)

几乎所有Magento模块都可以这样编程:

   <?php
    require_once('app/Mage.php'); // don't forget to replace app/Mage.php with the actual path to your Magento
    $mage = Mage::app();
    // create the block
    $block = $mage->getLayout()->createBlock('downloads/link', '', array('id' => '1,5,6,7', 'title' => 'Files'));
    // output the block   
    echo $block->toHtml();

请注意,您很可能会面临Magento&#34;以及Magento等人的典型问题。输出,例如缺少脚本,样式,图像。

在这种情况下,所有内容都以类似的方式连接。可以在相应的布局中找到所有依赖项。