Changeset 2178570
- Timestamp:
- 10/23/2019 02:16:37 PM (6 years ago)
- Location:
- cardgate
- Files:
-
- 2 added
- 4 deleted
- 8 edited
- 1 copied
-
tags/3.1.15 (copied) (copied from cardgate/trunk)
-
tags/3.1.15/cardgate-clientlib-php/src/Client.php (modified) (3 diffs)
-
tags/3.1.15/cardgate-clientlib-php/src/Customer.php (deleted)
-
tags/3.1.15/cardgate-clientlib-php/src/Method.php (modified) (1 diff)
-
tags/3.1.15/cardgate-clientlib-php/src/resource/Customers.php (deleted)
-
tags/3.1.15/cardgate.php (modified) (2 diffs)
-
tags/3.1.15/classes/WC_CardgateOnlineueberweisen.php (added)
-
tags/3.1.15/readme.txt (modified) (3 diffs)
-
trunk/cardgate-clientlib-php/src/Client.php (modified) (3 diffs)
-
trunk/cardgate-clientlib-php/src/Customer.php (deleted)
-
trunk/cardgate-clientlib-php/src/Method.php (modified) (1 diff)
-
trunk/cardgate-clientlib-php/src/resource/Customers.php (deleted)
-
trunk/cardgate.php (modified) (2 diffs)
-
trunk/classes/WC_CardgateOnlineueberweisen.php (added)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cardgate/tags/3.1.15/cardgate-clientlib-php/src/Client.php
r2124579 r2178570 36 36 * Client version. 37 37 */ 38 const CLIENT_VERSION = "1.1.1 0";38 const CLIENT_VERSION = "1.1.12"; 39 39 40 40 /** … … 156 156 public function __debugInfo() { 157 157 return [ 158 'Version' => $this->_oVersion,158 'Version' => $this->_oVersion, 159 159 'Testmode' => $this->_bTestmode, 160 160 'DebugLevel' => $this->_iDebugLevel, … … 298 298 if ( 299 299 ! is_string( $sIp_ ) 300 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP)300 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP ) // NOTE ipv6 301 301 ) { 302 302 throw new Exception( 'Client.Ip.Invalid', 'invalid IP address: ' . $sIp_ ); -
cardgate/tags/3.1.15/cardgate-clientlib-php/src/Method.php
r2046053 r2178570 124 124 125 125 /** 126 * SofortPay127 */ 128 const SOFORTPAY = 'sofortpay';126 * OnlineUberweisen 127 */ 128 const ONLINEUEBERWEISEN = 'onlineueberweisen'; 129 129 130 130 /** -
cardgate/tags/3.1.15/cardgate.php
r2124579 r2178570 7 7 * Text Domain: cardgate 8 8 * Domain Path: /i18n/languages 9 * Version: 3.1.1 49 * Version: 3.1.15 10 10 * Requires at least: 4.4 11 11 * Author: CardGate … … 673 673 $methods[] = 'WC_CardgateIdealqr'; 674 674 $methods[] = 'WC_CardgateKlarna'; 675 $methods[] = 'WC_CardgateOnlineueberweisen'; 675 676 $methods[] = 'WC_CardgatePayPal'; 676 677 $methods[] = 'WC_CardgatePaysafecard'; -
cardgate/tags/3.1.15/readme.txt
r2124628 r2178570 5 5 Requires at least: 4.2 6 6 Tested up to: 5.2 7 Stable tag: 3.1.1 47 Stable tag: 3.1.15 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 29 29 <li>Klarna</li> 30 30 <li>MisterCash</li> 31 <li>OnlineÜberweisen</li> 31 32 <li>PayPal</li> 32 33 <li>Paysafecard</li> … … 66 67 67 68 == Changelog == 69 70 = 3.1.15 = 71 * New payment method: OnlineÜberweisen 68 72 69 73 = 3.1.14 = -
cardgate/trunk/cardgate-clientlib-php/src/Client.php
r2124579 r2178570 36 36 * Client version. 37 37 */ 38 const CLIENT_VERSION = "1.1.1 0";38 const CLIENT_VERSION = "1.1.12"; 39 39 40 40 /** … … 156 156 public function __debugInfo() { 157 157 return [ 158 'Version' => $this->_oVersion,158 'Version' => $this->_oVersion, 159 159 'Testmode' => $this->_bTestmode, 160 160 'DebugLevel' => $this->_iDebugLevel, … … 298 298 if ( 299 299 ! is_string( $sIp_ ) 300 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP)300 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP ) // NOTE ipv6 301 301 ) { 302 302 throw new Exception( 'Client.Ip.Invalid', 'invalid IP address: ' . $sIp_ ); -
cardgate/trunk/cardgate-clientlib-php/src/Method.php
r2046053 r2178570 124 124 125 125 /** 126 * SofortPay127 */ 128 const SOFORTPAY = 'sofortpay';126 * OnlineUberweisen 127 */ 128 const ONLINEUEBERWEISEN = 'onlineueberweisen'; 129 129 130 130 /** -
cardgate/trunk/cardgate.php
r2124579 r2178570 7 7 * Text Domain: cardgate 8 8 * Domain Path: /i18n/languages 9 * Version: 3.1.1 49 * Version: 3.1.15 10 10 * Requires at least: 4.4 11 11 * Author: CardGate … … 673 673 $methods[] = 'WC_CardgateIdealqr'; 674 674 $methods[] = 'WC_CardgateKlarna'; 675 $methods[] = 'WC_CardgateOnlineueberweisen'; 675 676 $methods[] = 'WC_CardgatePayPal'; 676 677 $methods[] = 'WC_CardgatePaysafecard'; -
cardgate/trunk/readme.txt
r2124628 r2178570 5 5 Requires at least: 4.2 6 6 Tested up to: 5.2 7 Stable tag: 3.1.1 47 Stable tag: 3.1.15 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 29 29 <li>Klarna</li> 30 30 <li>MisterCash</li> 31 <li>OnlineÜberweisen</li> 31 32 <li>PayPal</li> 32 33 <li>Paysafecard</li> … … 66 67 67 68 == Changelog == 69 70 = 3.1.15 = 71 * New payment method: OnlineÜberweisen 68 72 69 73 = 3.1.14 =
Note: See TracChangeset
for help on using the changeset viewer.