如何将Mageworx
下载块置于magento之外?
例如:
{{block type="downloads/link" id="5,6,7" title="Files"}}
答案 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等人的典型问题。输出,例如缺少脚本,样式,图像。
在这种情况下,所有内容都以类似的方式连接。可以在相应的布局中找到所有依赖项。