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:
parent
4db28b7bbd
commit
da1f027142
2 changed files with 9 additions and 3 deletions
|
|
@ -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')) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue