Merge pull request #390 from havvg/1.5

combine schema files into one AppData
This commit is contained in:
Toni Uebernickel 2016-01-23 23:21:32 +01:00
commit e0975bc43a
2 changed files with 9 additions and 3 deletions

View file

@ -52,8 +52,11 @@ EOT
protected function execute(InputInterface $input, OutputInterface $output)
{
if ($schemas = $this->getSchemasFromBundle($this->bundle)) {
$schemas = $this->getFinalSchemas($this->getContainer()->get('kernel'));
$transformer = new \XmlToAppData(null, null, 'UTF-8');
foreach ($schemas as $fileName => $array) {
foreach ($this->getDatabasesFromSchema($array[1]) as $database) {
foreach ($this->getDatabasesFromSchema($array[1], $transformer) as $database) {
$this->createFormTypeFromDatabase($this->bundle, $database, $input->getArgument('models'), $output, $input->getOption('force'));
}
}

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')) {