Changeset 2097544
- Timestamp:
- 05/29/2019 10:18:34 PM (7 years ago)
- Location:
- girocheckout/trunk
- Files:
-
- 7 edited
-
girocheckout.php (modified) (2 diffs)
-
library/GiroCheckout_SDK.php (modified) (1 diff)
-
library/GiroCheckout_SDK_Request.php (modified) (4 diffs)
-
library/GiroCheckout_Utility.php (modified) (1 diff)
-
library/api/bluecode/GiroCheckout_SDK_BlueCodeTransaction.php (modified) (1 diff)
-
library/helper/GiroCheckout_SDK_TransactionType_helper.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
girocheckout/trunk/girocheckout.php
r2082698 r2097544 10 10 * Plugin Name: GiroCheckout 11 11 * Description: Plugin to integrate the GiroCheckout payment methods into WooCommerce. 12 * Version: 4.0. 312 * Version: 4.0.4 13 13 * Author: GiroSolution GmbH 14 14 * Author URI: http://www.girosolution.de … … 53 53 $methods[] = 'gc_sofortuw'; 54 54 $methods[] = 'gc_maestro'; 55 //$methods[] = 'gc_bluecode';55 $methods[] = 'gc_bluecode'; 56 56 57 57 return $methods; -
girocheckout/trunk/library/GiroCheckout_SDK.php
r2082698 r2097544 7 7 * 8 8 * @package GiroCheckout 9 * @version $Revision: 2 54 $ / $Date: 2019-04-12 17:36:18 -0400 (Fri, 12 Apr2019) $9 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $ 10 10 */ 11 define('__GIROCHECKOUT_SDK_VERSION__', '2.1.2 4');11 define('__GIROCHECKOUT_SDK_VERSION__', '2.1.25'); 12 12 13 13 if( version_compare( phpversion(), '5.3.0', '<' ) ) { -
girocheckout/trunk/library/GiroCheckout_SDK_Request.php
r2082698 r2097544 10 10 * 11 11 * @package GiroCheckout 12 * @version $Revision: 2 54 $ / $Date: 2019-04-12 17:36:18 -0400 (Fri, 12 Apr2019) $12 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $ 13 13 */ 14 14 class GiroCheckout_SDK_Request … … 175 175 */ 176 176 public function submit() { 177 $header = array();178 $body = '';179 177 $Config = GiroCheckout_SDK_Config::getInstance(); 180 178 … … 223 221 $this->responseRaw = print_r($header, TRUE) . "\n$body"; 224 222 223 //error_log( "Response Raw: ". $this->responseRaw ); 224 225 225 $response = GiroCheckout_SDK_Curl_helper::getJSONResponseToArray($body); 226 226 … … 235 235 } 236 236 else { 237 error_log("Response: ". print_r($response,true) ); 237 238 $this->response = $this->requestMethod->checkResponse($response); 238 239 if ($Config->getConfig('DEBUG_MODE')) { -
girocheckout/trunk/library/GiroCheckout_Utility.php
r2082698 r2097544 19 19 */ 20 20 public static function getVersion() { 21 return '4.0. 3';21 return '4.0.4'; 22 22 } 23 23 -
girocheckout/trunk/library/api/bluecode/GiroCheckout_SDK_BlueCodeTransaction.php
r2082698 r2097544 19 19 'amount' => TRUE, 20 20 'currency' => TRUE, 21 'branch' => TRUE,22 'terminal' => FALSE,23 'slipDateTime' => TRUE,24 21 'purpose' => TRUE, // Bluecode slip 25 22 'urlRedirect' => TRUE, -
girocheckout/trunk/library/helper/GiroCheckout_SDK_TransactionType_helper.php
r1801157 r2097544 4 4 * 5 5 * @package GiroCheckout 6 * @version $Revision: 2 25 $ / $Date: 2017-09-04 16:11:20 -0300 (Mon, 04 Sep 2017) $6 * @version $Revision: 260 $ / $Date: 2019-05-20 13:35:12 -0400 (Mon, 20 May 2019) $ 7 7 */ 8 8 class GiroCheckout_SDK_TransactionType_helper { … … 103 103 case 'blueCodeTransaction': 104 104 return new GiroCheckout_SDK_BlueCodeTransaction(); 105 case 'blueCodeRefund': 106 return new GiroCheckout_SDK_BlueCodeRefund(); 105 107 106 108 //Payment page apis -
girocheckout/trunk/readme.txt
r2082698 r2097544 6 6 Requires PHP: 5.4 7 7 WC requires at least: 3.0.0 8 WC tested up to: 3.6. 28 WC tested up to: 3.6.4 9 9 Stable tag: trunk 10 10 License: GPLv2 or later … … 55 55 == Changelog == 56 56 57 = 4.0.4 = 58 * Added support for Bluecode E-Commerce payment method 59 57 60 = 4.0.3 = 58 61 * Fixed a problem with incorrect status options being offered for the new capture feature (ch1125). … … 89 92 == Upgrade Notice == 90 93 91 = 4.0.3 =92 This release fixes a bug that caused problems on login/logoff. Updating is highly encouraged.93 94 94 = 4.0.2 = 95 95 This release fixes a bug in the purpose field handling. Updating is recommended.
Note: See TracChangeset
for help on using the changeset viewer.