Skip to content

Instantly share code, notes, and snippets.

@cmuench
Created July 10, 2012 08:21
Show Gist options
  • Save cmuench/3081999 to your computer and use it in GitHub Desktop.
Save cmuench/3081999 to your computer and use it in GitHub Desktop.
List magento db resources
<?php
require_once 'app/Mage.php';
Mage::app();
$xml = Mage::app()->getConfig()->getNode('global/resources');
foreach ($xml->children() as $node) {
echo $node->getName() . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment