combine schema files into one AppData

This fixes #173.

In case the schema.xml files are referenced across multiple bundles, the \AppData needs to be extended by each bundle, before reading data from the respective \Database.
This commit is contained in:
Toni Uebernickel 2016-01-23 22:50:28 +01:00
commit da1f027142
2 changed files with 9 additions and 3 deletions

View file

@ -38,9 +38,12 @@ abstract class GeneratorAwareCommand extends AbstractCommand
set_include_path(sprintf('%s/generator/lib', $propelPath) . PATH_SEPARATOR . get_include_path());
}
protected function getDatabasesFromSchema(\SplFileInfo $file)
protected function getDatabasesFromSchema(\SplFileInfo $file, \XmlToAppData $transformer = null)
{
$transformer = new \XmlToAppData(null, null, 'UTF-8');
if (null === $transformer) {
$transformer = new \XmlToAppData(null, null, 'UTF-8');
}
$config = new \QuickGeneratorConfig();
if (file_exists($propelIni = $this->getContainer()->getParameter('kernel.root_dir') . '/config/propel.ini')) {