Pman.js
[Pman.Core] / UpdateCurrencyRate.php
index 0cb3f31..0c0fe04 100644 (file)
@@ -31,19 +31,20 @@ class Pman_Core_UpdateCurrencyRate extends Pman
         die("NOT ALLOWED");
     }
     
-    function get($args, $opts)
+    function get($args, $opts=array())
     {   
         
-        DB_DataObject::DebugLevel(1);
+        //DB_DataObject::DebugLevel(1);
         $d = DB_DataObject::Factory('core_curr_rate');
         $d->loadRates();
-        die("done");
-        
-        
         
+        $hkd = $d->convert(1,'USD','HKD');
         
+        echo "1 USD is ~ $hkd HKD (should be about 7.75)\n ";
         
+        die("done");
         
+         
         
     }
     function oldversion()