diff options
author | godzilla80@gmx.net <> | 2009-06-07 08:13:34 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-06-07 08:13:34 +0000 |
commit | cb8f2362ca522fc04b71eaf4d61cb30ad0e73ddf (patch) | |
tree | 717c826882374b5c63c589e5e03c83944583c4e1 /framework/Data/SqlMap/Configuration | |
parent | 6eba9f44164f0ba85ddd3619ee5008d13f531d58 (diff) |
Fixed Issue #168 - TSqlMapXmlConfiguration: CacheModel properties are not set
Diffstat (limited to 'framework/Data/SqlMap/Configuration')
-rw-r--r-- | framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php b/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php index 462b356f..f6e0acd5 100644 --- a/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php +++ b/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php @@ -712,6 +712,20 @@ class TSqlMapXmlMappingConfiguration extends TSqlMapXmlConfigBuilder }
$cache = Prado::createComponent($cacheModel->getImplementationClass());
$this->setObjectPropFromNode($cache,$node,$properties);
+
+ foreach($node->xpath('property') as $propertyNode)
+ {
+ $name = $propertyNode->attributes()->name;
+ if($name===null || $name==='') continue;
+
+ $value = $propertyNode->attributes()->value;
+ if($value===null || $value==='') continue;
+
+ if( !TPropertyAccess::has($cache, $name) ) continue;
+
+ TPropertyAccess::set($cache, $name, $value);
+ }
+
$this->loadFlushInterval($cacheModel,$node);
$cacheModel->initialize($cache);
|