DataObjects/Core_curr_rate.php
[Pman.Core] / I18n.php
index d5a65d9..6a23e74 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,7 +108,7 @@ class Pman_Core_I18n extends Pman
     function get($s ='')
     {
      
-     
+        $this->sessionState(0);
         $lbits = $this->guessUsersLanguage();
          
         if ($this->authUser && !empty($_REQUEST['_debug'])) {
@@ -284,6 +284,15 @@ 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()
     {
@@ -295,12 +304,13 @@ class Pman_Core_I18n extends Pman
         $this->rates['EUR'] = 1.0;
         $this->rates['TWD'] = 46.7008412;
         $this->rates['VND'] = 26405.3;
-         $this->rates['RMB'] = $this->rates['CNY'] ;
+       
        
         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';