* configurable model search path

* extended documentation
This commit is contained in:
Michael Heiniger 2013-04-11 10:37:16 +02:00
commit fc94f5f681
4 changed files with 32 additions and 4 deletions

View file

@ -64,8 +64,7 @@ abstract class AbstractDataHandler
if (0 === count($this->dbMap->getTables())) {
$finder = new Finder();
$files = $finder->files()->name('*TableMap.php')
->in($this->getRootDir() . '/../src/')
->in($this->getRootDir() . '/../vendor/')
->in($this->getModelSearchPath($connectionName))
->exclude('PropelBundle')
->exclude('Tests');
@ -121,4 +120,24 @@ abstract class AbstractDataHandler
return null;
}
/**
* Gets the search path for models out of the configuration.
*
* @param string $connectionName A connection name.
*/
private function getModelSearchPath($connectionName) {
$configuration = Propel::getConfiguration();
$searchPath = array();
if (!empty($configuration['datasources'][$connectionName]['connection']['model_paths'])) {
$modelPaths = $configuration['datasources'][$connectionName]['connection']['model_paths'];
foreach ($modelPaths as $modelPath) {
$searchPath[] = $this->getRootDir() . '/../' . $modelPath;
}
} else {
$searchPath[] = $this->getRootDir() . '/../';
}
return $searchPath;
}
}