GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
index 1580450..1d22a52 100644 (file)
@@ -47,15 +47,18 @@ class Pman_Core_GoogleTranslate extends Pman
         curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param));
         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
-//        $response = curl_exec($handle);
-        
-//        print_r(http_build_query($param));
-        
-        $responseDecoded = json_decode($response, true);
+
+        $response = curl_exec($handle);
+
+        $responseDecoded = json_decode($response);
         curl_close($handle);
-    
-        $this->jdata($responseDecoded);
+        
+        if(!empty($responseDecoded->error)){
+            $this->jerr($responseDecoded->error->message);
+        }
+        print_r($responseDecoded);
+        $responseDecoded->data->translations[0]->translatedText = rawurldecode($responseDecoded->data->data->translations[0]->translatedText);
+        $this->jok($responseDecoded->data->translations[0]);
         
     }