Skip to content

Instantly share code, notes, and snippets.

@astorm
Created April 25, 2012 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astorm/2492919 to your computer and use it in GitHub Desktop.
Save astorm/2492919 to your computer and use it in GitHub Desktop.
Generate XML Tree of Magento DB Stored Configuration
<?php
// Why does this work? Start reading
// http://alanstorm.com/category/magento#magento_config
//START: bootstrap magento CLI environment ...
//your bootstrap may be more or less complicated depending on your version/needs
//and it not needed if you're doing this from a controller action or otherwise
//already bootstrapped environment
error_reporting(E_ALL | E_STRICT);
$mageFilename = 'app/Mage.php';
$maintenanceFile = 'maintenance.flag';
require_once $mageFilename;
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
umask(0);
$mageRunCode = '';
$mageRunType = 'store';
Mage::init($mageRunCode, $mageRunType);
//END: bootstrap
//load an empty magento configuration tree
$new_config = new Mage_Core_Model_Config();
$new_config->loadString('<config/>');
//get resource model of the "real" Magento configuration
$resource_model = Mage::getConfig()->getResourceModel();
//use resource model to load XML Database configuration
$resource_model->loadToXml($new_config);
echo $new_config->getNode()->asXml();
/**
* Open Source Initiative OSI - The MIT License (MIT):Licensing
*
* The MIT License (MIT)
* Copyright (c) 2009 - 2011 Pulse Storm LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment