Fix for the creating of files and the path to create them at.
This commit is contained in:
parent
f59131f010
commit
dc90cca915
1 changed files with 15 additions and 6 deletions
|
@ -32,7 +32,7 @@
|
||||||
*/
|
*/
|
||||||
class Doctrine_Search
|
class Doctrine_Search
|
||||||
{
|
{
|
||||||
protected $_options = array('generateFiles' => true,
|
protected $_options = array('generateFiles' => false,
|
||||||
'className' => '%CLASS%Index');
|
'className' => '%CLASS%Index');
|
||||||
|
|
||||||
|
|
||||||
|
@ -193,12 +193,21 @@ class Doctrine_Search
|
||||||
$columns += $fk;
|
$columns += $fk;
|
||||||
|
|
||||||
$builder = new Doctrine_Import_Builder();
|
$builder = new Doctrine_Import_Builder();
|
||||||
|
|
||||||
$def = $builder->buildDefinition($options, $columns, $relations);
|
|
||||||
|
|
||||||
if ( ! $this->_options['generateFiles']) {
|
if ($this->_options['generateFiles']) {
|
||||||
eval($def);
|
if (isset($this->_options['generatePath']) && $this->_options['generatePath']) {
|
||||||
|
$builder->setTargetPath($this->_options['generatePath']);
|
||||||
|
|
||||||
|
$builder->buildRecord($options, $columns, $relations);
|
||||||
|
} else {
|
||||||
|
throw new Doctrine_Search_Exception('If you wish to generate files then you must specify the path to generate the files in.');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$def = $builder->buildDefinition($options, $columns, $relations);
|
||||||
|
|
||||||
|
eval($def);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue