diff options
author | wei <> | 2006-05-11 11:35:35 +0000 |
---|---|---|
committer | wei <> | 2006-05-11 11:35:35 +0000 |
commit | cc61c2d74e151a7fb75303f8740edfe74cdd9eb8 (patch) | |
tree | 3d57f3db231469caaadf42eabe095cc6f17b9950 /demos/quickstart/protected/index/ZendSearch.php | |
parent | 90e706cda83d3b64a5508ed182956a1e3110ff26 (diff) |
Update api docs and add API search
Diffstat (limited to 'demos/quickstart/protected/index/ZendSearch.php')
-rw-r--r-- | demos/quickstart/protected/index/ZendSearch.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/demos/quickstart/protected/index/ZendSearch.php b/demos/quickstart/protected/index/ZendSearch.php index 136004de..ec15729c 100644 --- a/demos/quickstart/protected/index/ZendSearch.php +++ b/demos/quickstart/protected/index/ZendSearch.php @@ -26,10 +26,13 @@ class ZendSearch extends TModule protected function importZendNamespace()
{
- $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));
+ 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()
|