DataObjects/core.sql
[Pman.Core] / I18n.php
index e297a0b..aee7af2 100644 (file)
--- a/I18n.php
+++ b/I18n.php
@@ -111,6 +111,11 @@ class Pman_Core_I18n extends Pman
      
         $lbits = $this->guessUsersLanguage();
          
+        if ($this->authUser && !empty($_REQUEST['_debug'])) {
+            DB_DataObject::debugLevel(1);
+        }
+        
+        
         
         $i = DB_DataObject::Factory('I18n');
         
@@ -120,20 +125,20 @@ class Pman_Core_I18n extends Pman
                 
                 $i->ltype = 'l';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('l',  implode('_',$lbits[0])));
+                $this->jdata($i->toTransList('l',  implode('_',$lbits)));
                 break;
 
             case 'Country':
                 $i->ltype = 'c';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('c',  implode('_',$lbits[0])));
+                $this->jdata($i->toTransList('c',  implode('_',$lbits)));
                
                 break;
                 
             case 'Currency':
                 $i->ltype = 'm';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('m',  implode('_',$lbits[0])));
+                $this->jdata($i->toTransList('m',  implode('_',$lbits)));
                 break;
             
             case 'Timezone':
@@ -169,8 +174,9 @@ class Pman_Core_I18n extends Pman
         if (!empty($_REQUEST['debug'])) {
             DB_DataObject::debugLevel(1);
         }
+        
         $i = DB_DataObject::Factory('I18n');
-        $i->buildDb();
+        $i->buildDB();
       
        
         $i = DB_DataObject::Factory('I18n');
@@ -180,7 +186,8 @@ class Pman_Core_I18n extends Pman
         $ar = array();
         foreach($langs as $lang)
         {
-            $rlang = array_shift(explode('_', strtoupper($lang)));
+            //$rlang = array_shift(explode('_', strtoupper($lang)));
+            $rlang = array_shift(explode('_', $lang));
             
             $ar[$lang] = array();
             $i = DB_DataObject::Factory('I18n');
@@ -204,7 +211,7 @@ class Pman_Core_I18n extends Pman
      /**
      * translate (used by database building);
      * usage :
-     * require_once 'Pman/Core/I18N.php';
+     * require_once 'Pman/Core/I18n.php';
      * $x = new Pman_Core_I18N();
      * $x->translate($this->authuser, 'c', 'US');
      * @param au - auth User
@@ -277,19 +284,44 @@ class Pman_Core_I18n extends Pman
         return $this->rates[$to] * $base;
     
     }
+    /**
+     * load Rates - uses our base rates as default,
+     * if it can load rates from europe or a cache it will update them.
+     * otherwise it will alwasy return a rate.
+     * -- should not be used to do perfect rates.
+     * -- as it may fail... and use backup rates
+     *
+     *
+     */
     var $rates = array();
     function loadRates()
     {
         if (!empty($this->rates)) {
             return true;
         }
+        // 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;
+       
+       
+        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'] ;
+        // now try loading from latest..
         $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        
         if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
-            $f = file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
+            // this may fail...
+            $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
             if (!strlen($f)) {
-                return false;
-            }
+                return;
+            } 
             file_put_contents($target,$f);
+        
         } 
         $dom = simplexml_load_file($target);
         $this->rates['EUR'] = 1.0;
@@ -300,7 +332,7 @@ class Pman_Core_I18n extends Pman
            //echo '<PRE>';print_r($c );
             $this->rates[(string)$c['currency']] = (string)$c['rate'];
         }
-         $this->rates['RMB'] = $this->rates['CNY'] ;
+        $this->rates['RMB'] = $this->rates['CNY'] ;
     }