在 Magento xml 布局或配置文件中,我们可以将 ifconfig 作为参数写入标签中以应用这样的条件
<action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled">
<label>Contact Us</label>
<url>contacts</url>
<title>Contact Us</title>
<prepare>true</prepare>
</action>
我试图找到这个功能的 ifconfig 替代品
Mage::getStoreConfig($path,Mage::app()->getStore());
这样我就可以在 ifconfig 中包含存储条件和路径。任何帮助将不胜感激。