diff options
author | emkael <emkael@tlen.pl> | 2016-06-08 17:18:30 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-06-10 11:46:41 +0200 |
commit | 817d6fd42eb3ac0d1ee9a73fe5e5a4b1ec21da05 (patch) | |
tree | edb25136792eb69669ac6d0c10ed7f03afb9b4b9 /lib/prado/framework/pradolite.php | |
parent | 6ab01ff111f2aca0786f4fd45df25ea6ad9be1ca (diff) |
* r87cdee4 from emkael/prado
Diffstat (limited to 'lib/prado/framework/pradolite.php')
-rw-r--r-- | lib/prado/framework/pradolite.php | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lib/prado/framework/pradolite.php b/lib/prado/framework/pradolite.php index 04ecec4..6b51484 100644 --- a/lib/prado/framework/pradolite.php +++ b/lib/prado/framework/pradolite.php @@ -1,7 +1,7 @@ <?php /** * File Name: pradolite.php - * Last Update: 2016/05/08 19:49:20 + * Last Update: 2016/06/08 16:06:00 * Generated By: buildscripts/phpbuilder/build.php * * This file is used in lieu of prado.php to boost PRADO application performance. @@ -4518,6 +4518,13 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable else return parent::__get($name); } + public function __isset($name) { + if(isset($this->_rf[self::RF_NAMED_OBJECTS][$name])) { + return true; + } else { + return parent::__isset($name); + } + } public function getHasAdapter() { return isset($this->_rf[self::RF_ADAPTER]); @@ -10287,7 +10294,7 @@ class TGlobalization extends TModule throw new TConfigurationException("invalid source dir '{$config['source']}'"); } } - if($config['cache']) + if(isset($config['cache']) && TPropertyValue::ensureBoolean($config['cache'])) { $config['cache'] = $this->getApplication()->getRunTimePath().'/i18n'; if(!is_dir($config['cache'])) @@ -10297,6 +10304,10 @@ class TGlobalization extends TModule $config['cache']); chmod($config['cache'], PRADO_CHMOD); } } + else + { + unset($config['cache']); + } $this->_translation = $config; } public function getTranslationCatalogue() |