MAgento - 如何修复xml文件中的常量并将其放入模板phtml文件中

时间:2011-09-20 09:25:28

标签: magento

如何在自定义xml文件中修复常量并将其放入我的自定义模板phtml文件中?

感谢您的帮助:)

1 个答案:

答案 0 :(得分:5)

在你的config.xml中

<default>
    <settings>
        <myconst>My Value</myconst>
    </settings>
</default>

在.phtml文件中

<?php echo Mage::getStoreConfig('settings/myconst'); ?>

也许这可能有所帮助,我现在无法尝试代码。