我们如何访问Magento模块配置?

时间:2012-06-21 18:18:53

标签: php magento

我是Magento的新手,我想在我创建的模块的/etc/local.xml中加入一些LDAP会议,但我找不到......

非常确定每个人都知道,我无法在网上找到合适的文档

1 个答案:

答案 0 :(得分:0)

如何从config.xml文件获取特定配置的示例:

[my_module] /etc/config.xml

中的设置
<connexions>
    <ldap>
        <host><![CDATA[LDAP_HOST]]></host>
        <username><![CDATA[USERNAME]]></username>
        <password><![CDATA[PASSWORD]]></password>
        <baseDn><![CDATA[BASE_DN]]></baseDn>
    </ldap>
</connexions>

打电话的方式:

Mage::getConfig()->loadModulesConfiguration( 'config.xml' )
                 ->getNode( 'connexions/ldap')
                 ->asXML()