Plugin Directory

Changeset 2588602


Ignore:
Timestamp:
08/25/2021 02:36:47 PM (4 years ago)
Author:
CardGate
Message:

new payment method: SprayPay

Location:
cardgate
Files:
2 added
8 edited
1 copied

Legend:

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

    r2249399 r2588602  
    3636         * Client version.
    3737         */
    38         const CLIENT_VERSION = "1.1.13";
     38        const CLIENT_VERSION = "1.1.15";
    3939
    4040        /**
     
    503503
    504504            if ( 'POST' == $sHttpMethod_ ) {
    505                 $this->_sLastRequest = json_encode( $aData_ );
     505                $this->_sLastRequest = json_encode( $aData_, JSON_PARTIAL_OUTPUT_ON_ERROR );
    506506                curl_setopt( $rCh, CURLOPT_URL, $sUrl );
    507507                curl_setopt( $rCh, CURLOPT_POST, TRUE );
  • cardgate/tags/3.1.21/cardgate-clientlib-php/src/Method.php

    r2178570 r2588602  
    132132         */
    133133        const GIFTCARD = 'giftcard';
     134
     135        /**
     136         * EPS
     137         */
     138        const EPS = 'eps';
     139
     140        /**
     141         * SprayPay
     142         */
     143        const SPRAYPAY = 'spraypay';
    134144
    135145        /**
  • cardgate/tags/3.1.21/cardgate.php

    r2532998 r2588602  
    77 * Author: CardGate
    88 * Author URI: https://www.cardgate.com
    9  * Version: 3.1.20
     9 * Version: 3.1.21
    1010 * Text Domain: cardgate
    1111 * Domain Path: /i18n/languages
    1212 * Requires at least: 4.4
    1313 * WC requires at least: 2.1.0
    14  * WC tested up to: 5.3.0
     14 * WC tested up to: 5.6.0
    1515 * License: GPLv3 or later
    1616 */
     
    698698        $methods[] = 'WC_CardgatePrzelewy24';
    699699        $methods[] = 'WC_CardgateSofortbanking';
     700        $methods[] = 'WC_CardgateSpraypay';
    700701       
    701702        return $methods;
  • cardgate/tags/3.1.21/readme.txt

    r2532998 r2588602  
    55Requires at least: 4.2
    66Tested up to: 5.7
    7 Stable tag: 3.1.20
     7Stable tag: 3.1.21
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3535<li>Przelewy24</li>
    3636<li>Sofortbanking</li>
     37<li>SprayPay</li>
    3738</ul>
    3839
     
    7475
    7576== Changelog ==
     77
     78= 3.1.21 =
     79* New payment method: SprayPay
    7680
    7781= 3.1.20 =
  • cardgate/trunk/cardgate-clientlib-php/src/Client.php

    r2249399 r2588602  
    3636         * Client version.
    3737         */
    38         const CLIENT_VERSION = "1.1.13";
     38        const CLIENT_VERSION = "1.1.15";
    3939
    4040        /**
     
    503503
    504504            if ( 'POST' == $sHttpMethod_ ) {
    505                 $this->_sLastRequest = json_encode( $aData_ );
     505                $this->_sLastRequest = json_encode( $aData_, JSON_PARTIAL_OUTPUT_ON_ERROR );
    506506                curl_setopt( $rCh, CURLOPT_URL, $sUrl );
    507507                curl_setopt( $rCh, CURLOPT_POST, TRUE );
  • cardgate/trunk/cardgate-clientlib-php/src/Method.php

    r2178570 r2588602  
    132132         */
    133133        const GIFTCARD = 'giftcard';
     134
     135        /**
     136         * EPS
     137         */
     138        const EPS = 'eps';
     139
     140        /**
     141         * SprayPay
     142         */
     143        const SPRAYPAY = 'spraypay';
    134144
    135145        /**
  • cardgate/trunk/cardgate.php

    r2532998 r2588602  
    77 * Author: CardGate
    88 * Author URI: https://www.cardgate.com
    9  * Version: 3.1.20
     9 * Version: 3.1.21
    1010 * Text Domain: cardgate
    1111 * Domain Path: /i18n/languages
    1212 * Requires at least: 4.4
    1313 * WC requires at least: 2.1.0
    14  * WC tested up to: 5.3.0
     14 * WC tested up to: 5.6.0
    1515 * License: GPLv3 or later
    1616 */
     
    698698        $methods[] = 'WC_CardgatePrzelewy24';
    699699        $methods[] = 'WC_CardgateSofortbanking';
     700        $methods[] = 'WC_CardgateSpraypay';
    700701       
    701702        return $methods;
  • cardgate/trunk/readme.txt

    r2532998 r2588602  
    55Requires at least: 4.2
    66Tested up to: 5.7
    7 Stable tag: 3.1.20
     7Stable tag: 3.1.21
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3535<li>Przelewy24</li>
    3636<li>Sofortbanking</li>
     37<li>SprayPay</li>
    3738</ul>
    3839
     
    7475
    7576== Changelog ==
     77
     78= 3.1.21 =
     79* New payment method: SprayPay
    7680
    7781= 3.1.20 =
Note: See TracChangeset for help on using the changeset viewer.