From 99077f0e4431d0825a180054cd27fc94fe3619aa Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 5 Oct 2015 15:23:58 +0800 Subject: [PATCH] DataObjects/Core_curr_rate.php --- DataObjects/Core_curr_rate.php | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/DataObjects/Core_curr_rate.php b/DataObjects/Core_curr_rate.php index 2d2bb1e7..f274fac3 100644 --- a/DataObjects/Core_curr_rate.php +++ b/DataObjects/Core_curr_rate.php @@ -49,16 +49,19 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject // load our default rates to start with.. $dom = simplexml_load_file(dirname(__FILE__).'/../eurofxref-daily.xml'); - $this->rates['EUR'] = 1.0; - $this->rates['TWD'] = 46.7008412; - $this->rates['VND'] = 26405.3; + $rates['EUR'] = 1.0; + $rates['TWD'] = 46.7008412; + $rates['VND'] = 26405.3; foreach($dom->Cube->Cube->Cube as $c) { //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
+        $rates['RMB'] = $rates['CNY'] ;
+        
+        
+        
         // now try loading from latest..
         $target = ini_get('session.save_path').'/eurofxref-daily.xml';
         
@@ -68,18 +71,18 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject
             if (!strlen($f)) {
                 return;
             } 
-            file_put_contents($target,$f);
+            
         
         } 
         $dom = simplexml_load_file($target);
-        $this->rates['EUR'] = 1.0;
-        $this->rates['TWD'] = 46.7008412;
-        $this->rates['VND'] = 26405.3;
+        $rates['EUR'] = 1.0;
+        $rates['TWD'] = 46.7008412;
+        $rates['VND'] = 26405.3;
        
         foreach($dom->Cube->Cube->Cube as $c) {
            //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
+        $rates['RMB'] = $rates['CNY'] ;
     }
 }
-- 
2.39.2