我正在准备认证,我对config.xml的特定节点有疑问,比如<客户>,<销售>,<付款>等...另一个疑问是关于<中的自定义节点默认>节点各种模块使用如下所示:
<default>
<monkey>
<custom_groupings>
<customer_grouping_name><![CDATA[MAGE_CUSTOMER_GROUPS]]>
</customer_grouping_name>
<segment_grouping_name><![CDATA[MAGE_CUSTOMER_SEGMENTS]]></segment_grouping_name>
</custom_groupings>
<general>
<active>0</active>
<double_optin>System->Configuration->Customers->Newsletter->
SubscriptionOptions->Need to Confirm</double_optin>
<ecommerce360>0</ecommerce360>
<checkout_subscribe>0</checkout_subscribe>
<transactional_emails>false</transactional_emails>
</general>
</monkey>
</default>
答案 0 :(得分:3)
配置XML只需要有有效的语法。结构/内容是否影响应用程序是模块设计的功能。因此,最好的问题是,“有哪些信息和技术可以深入了解Magento的配置XML?”
网上有多种资源,质量和准确度各不相同。对于专用资源,我建议查找名为Config.php
的任何类定义文件。例如,Mage_Sales_Model_Order_Config
[link]的内容引入了应用程序对global/sales/order
xpath的使用。
要构建详尽的列表,请查看以下文本的来源: