I18n.php
[Pman.Core] / I18n.php
index 4403e8c..d34c104 100644 (file)
--- a/I18n.php
+++ b/I18n.php
@@ -82,7 +82,7 @@ class Pman_Core_I18n extends Pman
      
     
     function guessUsersLanguage() {
-         
+        
         $lang = !$this->authUser || empty($this->authUser->lang ) ? 'en' : $this->authUser->lang;
         
         /// verify the selected language..
@@ -108,10 +108,10 @@ class Pman_Core_I18n extends Pman
     function get($s ='')
     {
      
-     
+        $this->sessionState(0);
         $lbits = $this->guessUsersLanguage();
          
-        if ($this->authUser && !empty($_REQUEST['debug'])) {
+        if ($this->authUser && !empty($_REQUEST['_debug'])) {
             DB_DataObject::debugLevel(1);
         }
         
@@ -284,34 +284,20 @@ class Pman_Core_I18n extends Pman
         return $this->rates[$to] * $base;
     
     }
+    /**
+     * DO NOT USE THIS -- see core_curr_rates dataobject.
+     *
+     */
     var $rates = array();
     function loadRates()
     {
         if (!empty($this->rates)) {
             return true;
         }
-        $target = ini_get('session.save_path').'/eurofxref-daily.xml';
-        if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
-            // this may fail...
-            $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
-            if (!strlen($f)) {
-                $target = dirname(__FILE__).'/eurofxref-daily.xml';
-                
-                
-            } else {
-                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;
-       
-        foreach($dom->Cube->Cube->Cube as $c) {
-           //echo '<PRE>';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
-        }
-         $this->rates['RMB'] = $this->rates['CNY'] ;
+        
+        $this->rates = DB_DAtaObject::Factory('core_curr_rates')->currentRates();
+        
+        
     }