From 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 Mon Sep 17 00:00:00 2001 From: ctrlaltca <> Date: Thu, 12 Jul 2012 11:21:01 +0000 Subject: standardize the use of unix eol; use svn properties to enforce native eol --- demos/quickstart/protected/index/ZendSearch.php | 108 ++++++++++++------------ 1 file changed, 54 insertions(+), 54 deletions(-) (limited to 'demos/quickstart/protected/index') diff --git a/demos/quickstart/protected/index/ZendSearch.php b/demos/quickstart/protected/index/ZendSearch.php index ec15729c..70aef414 100644 --- a/demos/quickstart/protected/index/ZendSearch.php +++ b/demos/quickstart/protected/index/ZendSearch.php @@ -1,55 +1,55 @@ -_data = Prado::getPathOfNamespace($path); - } - - public function getIndexDataDirectory() - { - return $this->_data; - } - - public function setZendFramework($path) - { - $this->_ZF = Prado::getPathOfNamespace($path); - } - - protected function importZendNamespace() - { - if(is_null(Prado::getPathOfAlias('Zend'))) - { - $zendBase = !is_null($this->_ZF) ? $this->_ZF.'.*' : 'Application.index.*'; - $path = !is_null($this->_ZF) ? $this->_ZF.'.Zend.*' : 'Application.index.Zend.*'; - Prado::using($zendBase); - Prado::setPathOfAlias('Zend', Prado::getPathOfNamespace($path)); - } - } - - protected function getZendSearch() - { - if(is_null($this->_search)) - { - $this->importZendNamespace(); - Prado::using('Zend.Search.Lucene'); - $this->_search = new Zend_Search_Lucene($this->_data); - } - return $this->_search; - } - - public function find($query) - { - return $this->getZendSearch()->find(strtolower($query)); - } -} - +_data = Prado::getPathOfNamespace($path); + } + + public function getIndexDataDirectory() + { + return $this->_data; + } + + public function setZendFramework($path) + { + $this->_ZF = Prado::getPathOfNamespace($path); + } + + protected function importZendNamespace() + { + if(is_null(Prado::getPathOfAlias('Zend'))) + { + $zendBase = !is_null($this->_ZF) ? $this->_ZF.'.*' : 'Application.index.*'; + $path = !is_null($this->_ZF) ? $this->_ZF.'.Zend.*' : 'Application.index.Zend.*'; + Prado::using($zendBase); + Prado::setPathOfAlias('Zend', Prado::getPathOfNamespace($path)); + } + } + + protected function getZendSearch() + { + if(is_null($this->_search)) + { + $this->importZendNamespace(); + Prado::using('Zend.Search.Lucene'); + $this->_search = new Zend_Search_Lucene($this->_data); + } + return $this->_search; + } + + public function find($query) + { + return $this->getZendSearch()->find(strtolower($query)); + } +} + ?> \ No newline at end of file -- cgit v1.2.3