SimpleExcel.php
[Pman.Core] / UpdateCurrencyRate.php
index e78d3e3..0c0fe04 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+// note this no longer works -- we could try using their JSON feed?
+
+
 require_once 'Pman.php';
 
 class Pman_Core_UpdateCurrencyRate extends Pman
@@ -28,8 +31,24 @@ class Pman_Core_UpdateCurrencyRate extends Pman
         die("NOT ALLOWED");
     }
     
-    function get($args, $opts)
+    function get($args, $opts=array())
     {   
+        
+        //DB_DataObject::DebugLevel(1);
+        $d = DB_DataObject::Factory('core_curr_rate');
+        $d->loadRates();
+        
+        $hkd = $d->convert(1,'USD','HKD');
+        
+        echo "1 USD is ~ $hkd HKD (should be about 7.75)\n ";
+        
+        die("done");
+        
+         
+        
+    }
+    function oldversion() 
+    {
         $currency = array();
         
         $response = $this->curl($this->actionUrl, array(), 'GET');
@@ -60,7 +79,7 @@ class Pman_Core_UpdateCurrencyRate extends Pman
         
         foreach ($currency as $k => $c){
             
-            echo "\nProcessing Currency : $c        ($k / $total) \n";
+            echo "\nProcessing Currency : $c ($k / $total) \n";
             
             $params = array(
                 'lang'          => 'en',