Magento: Read Write XML
I will be using Varien_Simplexml_Element class to read write xml nodes. The path to this class file is lib/Varien/Simplexml/Element.php
Here is a sample XML file which I am going to read through Magento code. I will also be adding an XML node to the following XML data.
<?xml version="1.0"?>
<config>
<modules>
<MyNamespace_MyModule>
<version>0.1.0</version>
</MyNamespace_MyModule>
</modules>
<frontend>
<routers>
<mymodule>
<use>standard</use>
<args>
<module>MyNamespace_MyModule</module>
<frontName>mymodule</frontName>
</args>
</mymodule>
</routers>
<layout>
<updates>
<mymodule>
<file>mymodule.xml</file>
</mymodule>
</updates>
</layout>
</frontend>
</config>
Here is the Magento/PHP code to read the XML data. I have kept the XML file in the root directory of Magento installation. The XML file is named test.xml. At first, the XML file is loaded and then it’s node are read with getNode function. Then, I have printed the result.
$xmlPath = Mage::getBaseDir().DS.'test.xml'; $xmlObj = new Varien_Simplexml_Config($xmlPath); $xmlData = $xmlObj->getNode(); echo "<pre>"; print_r($xmlData); echo "</pre>";
You can add node with the setNode function. Here, I have set a node inside the node ‘modules’. The name of my new node is ‘mukesh’ and it’s value is ‘chapagain’.
$xmlPath = Mage::getBaseDir().DS.'test.xml';
$xmlObj = new Varien_Simplexml_Config($xmlPath);
$xmlObj->setNode('modules/mukesh','chapagain');
$xmlData = $xmlObj->getNode()->asNiceXml();
// check if the XML file is writable and then save data
if(is_writable($xmlPath)) {
@file_put_contents($xmlPath, $xmlData);
}
Hope this helps. Thanks for reading.
From Mukesh Chapagain's Blog, post Magento: Read Write XML
Related posts:
- PHP : Read Write Xml with SimpleXML
- PHP : Read Write Xml with DOMDocument
- Magento: Read config XML nodes
- PHP: Read Write CSV
- Magento: Helper Data not found error
- Magento: Create, read, delete cookie
- Magento: How to get list of all modules programmatically?
- Magento: Set title, keywords and description in your module
- Magento: Upgrading mysql setup of a module
- jQuery: Grey out background and preview image as popup
