Plugin Directory

Changeset 2178570


Ignore:
Timestamp:
10/23/2019 02:16:37 PM (6 years ago)
Author:
CardGate
Message:

new payment method: onlineuberweisen

Location:
cardgate
Files:
2 added
4 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cardgate/tags/3.1.15/cardgate-clientlib-php/src/Client.php

    r2124579 r2178570  
    3636         * Client version.
    3737         */
    38         const CLIENT_VERSION = "1.1.10";
     38        const CLIENT_VERSION = "1.1.12";
    3939
    4040        /**
     
    156156        public function __debugInfo() {
    157157            return [
    158                 'Version'     => $this->_oVersion,
     158                'Version'       => $this->_oVersion,
    159159                'Testmode'    => $this->_bTestmode,
    160160                'DebugLevel'  => $this->_iDebugLevel,
     
    298298            if (
    299299                ! is_string( $sIp_ )
    300                 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP)
     300                || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP ) // NOTE ipv6
    301301            ) {
    302302                throw new Exception( 'Client.Ip.Invalid', 'invalid IP address: ' . $sIp_ );
  • cardgate/tags/3.1.15/cardgate-clientlib-php/src/Method.php

    r2046053 r2178570  
    124124       
    125125        /**
    126          * SofortPay
    127          */
    128         const SOFORTPAY = 'sofortpay';
     126         * OnlineUberweisen
     127         */
     128        const ONLINEUEBERWEISEN = 'onlineueberweisen';
    129129       
    130130        /**
  • cardgate/tags/3.1.15/cardgate.php

    r2124579 r2178570  
    77 * Text Domain: cardgate
    88 * Domain Path: /i18n/languages
    9  * Version: 3.1.14
     9 * Version: 3.1.15
    1010 * Requires at least: 4.4
    1111 * Author: CardGate
     
    673673        $methods[] = 'WC_CardgateIdealqr';
    674674        $methods[] = 'WC_CardgateKlarna';
     675        $methods[] = 'WC_CardgateOnlineueberweisen';
    675676        $methods[] = 'WC_CardgatePayPal';
    676677        $methods[] = 'WC_CardgatePaysafecard';
  • cardgate/tags/3.1.15/readme.txt

    r2124628 r2178570  
    55Requires at least: 4.2
    66Tested up to: 5.2
    7 Stable tag: 3.1.14
     7Stable tag: 3.1.15
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2929<li>Klarna</li>
    3030<li>MisterCash</li>
     31<li>OnlineÜberweisen</li>
    3132<li>PayPal</li>
    3233<li>Paysafecard</li>
     
    6667
    6768== Changelog ==
     69
     70= 3.1.15 =
     71* New payment method: OnlineÜberweisen
    6872
    6973= 3.1.14 =
  • cardgate/trunk/cardgate-clientlib-php/src/Client.php

    r2124579 r2178570  
    3636         * Client version.
    3737         */
    38         const CLIENT_VERSION = "1.1.10";
     38        const CLIENT_VERSION = "1.1.12";
    3939
    4040        /**
     
    156156        public function __debugInfo() {
    157157            return [
    158                 'Version'     => $this->_oVersion,
     158                'Version'       => $this->_oVersion,
    159159                'Testmode'    => $this->_bTestmode,
    160160                'DebugLevel'  => $this->_iDebugLevel,
     
    298298            if (
    299299                ! is_string( $sIp_ )
    300                 || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP)
     300                || FALSE === filter_var( $sIp_, FILTER_VALIDATE_IP ) // NOTE ipv6
    301301            ) {
    302302                throw new Exception( 'Client.Ip.Invalid', 'invalid IP address: ' . $sIp_ );
  • cardgate/trunk/cardgate-clientlib-php/src/Method.php

    r2046053 r2178570  
    124124       
    125125        /**
    126          * SofortPay
    127          */
    128         const SOFORTPAY = 'sofortpay';
     126         * OnlineUberweisen
     127         */
     128        const ONLINEUEBERWEISEN = 'onlineueberweisen';
    129129       
    130130        /**
  • cardgate/trunk/cardgate.php

    r2124579 r2178570  
    77 * Text Domain: cardgate
    88 * Domain Path: /i18n/languages
    9  * Version: 3.1.14
     9 * Version: 3.1.15
    1010 * Requires at least: 4.4
    1111 * Author: CardGate
     
    673673        $methods[] = 'WC_CardgateIdealqr';
    674674        $methods[] = 'WC_CardgateKlarna';
     675        $methods[] = 'WC_CardgateOnlineueberweisen';
    675676        $methods[] = 'WC_CardgatePayPal';
    676677        $methods[] = 'WC_CardgatePaysafecard';
  • cardgate/trunk/readme.txt

    r2124628 r2178570  
    55Requires at least: 4.2
    66Tested up to: 5.2
    7 Stable tag: 3.1.14
     7Stable tag: 3.1.15
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2929<li>Klarna</li>
    3030<li>MisterCash</li>
     31<li>OnlineÜberweisen</li>
    3132<li>PayPal</li>
    3233<li>Paysafecard</li>
     
    6667
    6768== Changelog ==
     69
     70= 3.1.15 =
     71* New payment method: OnlineÜberweisen
    6872
    6973= 3.1.14 =
Note: See TracChangeset for help on using the changeset viewer.