From dc90cca915760d4a3c7b0665303311ea8007e272 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Wed, 3 Oct 2007 18:57:24 +0000 Subject: [PATCH] Fix for the creating of files and the path to create them at. --- lib/Doctrine/Search.php | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/lib/Doctrine/Search.php b/lib/Doctrine/Search.php index aab12003f..3fafc1507 100644 --- a/lib/Doctrine/Search.php +++ b/lib/Doctrine/Search.php @@ -32,7 +32,7 @@ */ class Doctrine_Search { - protected $_options = array('generateFiles' => true, + protected $_options = array('generateFiles' => false, 'className' => '%CLASS%Index'); @@ -193,12 +193,21 @@ class Doctrine_Search $columns += $fk; $builder = new Doctrine_Import_Builder(); - - $def = $builder->buildDefinition($options, $columns, $relations); - if ( ! $this->_options['generateFiles']) { - eval($def); + if ($this->_options['generateFiles']) { + 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; } -} +} \ No newline at end of file