Plugin Directory

Changeset 2531558

Timestamp:
05/14/2021 07:14:29 AM (3 years ago)
Author:
woothemes
Message:

Tagging version 3.2.0

Location:
woocommerce-gateway-eway
Files:
24 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-gateway-eway/tags/3.2.0/changelog.txt

    r2421668 r2531558  
    11*** WooCommerce eWAY Gateway Changelog ***
     2
     3
     4
     5
     6
    27
    38= 3.1.25 - 2020-11-19 =
  • woocommerce-gateway-eway/tags/3.2.0/includes/class-wc-gateway-eway.php

    r2421668 r2531558  
    6969            }
    7070
    71             // Enqueu some JS functions and CSS
     71            // Enqueu
    7272            add_filter( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
    7373
     
    198198
    199199            // Required fields check
    200             if ( ! $this->customer_api && ! $this->customer_password ) {
     200            if ( ! $this->customer_api ! $this->customer_password ) {
    201201                $is_available = false;
    202202            }
     
    308308                        self::log( $order_id . ': Redirecting to thanks url' );
    309309
    310                         // return to thankyou page if successfull
     310                        //
    311311                        return array(
    312312                            'result'   => 'success',
     
    317317                        self::log( $order_id . ': Processing payment with token failed - ' . $e->getMessage() );
    318318                        wc_add_notice( $e->getMessage(), 'error' );
    319                         return;
     319                        return array(
     320                            'message' => $e->getMessage(),
     321                        );
    320322                    }
    321323                }
     
    491493                self::log( 'Response listener result: ' . print_r( $result, true ) );
    492494
    493                 // Use InvoiceRef temp, untill eWAY sorts out empty options echo
     495                // Use InvoiceRef temp, until
    494496                $order = wc_get_order( intval( $result->InvoiceReference ) );
    495497
  • woocommerce-gateway-eway/tags/3.2.0/readme.txt

    r2421668 r2531558  
    33Tags: credit card, eway, payment request, gateway, woocommerce, automattic
    44Requires at least: 4.4
    5 Tested up to: 5.4
    6 Stable tag: 3.1.25
     5Tested up to: 5.
     6Stable tag: 3.
    77Requires PHP: 5.6
    88License: GPLv3
     
    8484== Changelog ==
    8585
     86
     87
     88
     89
     90
    8691= 3.1.25 - 2020-11-19 =
    8792* Fix - Allow all-zero CVNs to be used during checkout.
  • woocommerce-gateway-eway/tags/3.2.0/woocommerce-gateway-eway.php

    r2421668 r2531558  
    66 * Author: WooCommerce
    77 * Author URI: https://woocommerce.com/
    8  * Version: 3.1.25
     8 * Version: 3.
    99 * Text Domain: wc-eway
    1010 * Domain Path: /languages
    1111 * Requires at least: 4.4
    12  * Tested up to: 5.4
    13  * WC tested up to: 4.0
     12 * Tested up to: 5.
     13 * WC tested up to:
    1414 * WC requires at least: 2.6
    15  * Copyright: © 2020 WooCommerce
     15 * Copyright: © 202 WooCommerce
    1616 * License: GNU General Public License v3.0
    1717 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2222}
    2323
    24 define( 'WOOCOMMERCE_GATEWAY_EWAY_VERSION', '3.1.25' ); // WRCS: DEFINED_VERSION.
     24define( 'WOOCOMMERCE_GATEWAY_EWAY_VERSION', '3.2.0' ); // WRCS: DEFINED_VERSION.
     25define( 'WOOCOMMERCE_GATEWAY_EWAY_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
     26define( 'WOOCOMMERCE_GATEWAY_EWAY_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    2527
    2628add_action( 'plugins_loaded', 'woocommerce_eway_init', 0 );
     
    8688    return array_merge( $plugin_links, $links );
    8789}
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
     103
  • woocommerce-gateway-eway/trunk/changelog.txt

    r2421668 r2531558  
    11*** WooCommerce eWAY Gateway Changelog ***
     2
     3
     4
     5
     6
    27
    38= 3.1.25 - 2020-11-19 =
  • woocommerce-gateway-eway/trunk/includes/class-wc-gateway-eway.php

    r2421668 r2531558  
    6969            }
    7070
    71             // Enqueu some JS functions and CSS
     71            // Enqueu
    7272            add_filter( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
    7373
     
    198198
    199199            // Required fields check
    200             if ( ! $this->customer_api && ! $this->customer_password ) {
     200            if ( ! $this->customer_api ! $this->customer_password ) {
    201201                $is_available = false;
    202202            }
     
    308308                        self::log( $order_id . ': Redirecting to thanks url' );
    309309
    310                         // return to thankyou page if successfull
     310                        //
    311311                        return array(
    312312                            'result'   => 'success',
     
    317317                        self::log( $order_id . ': Processing payment with token failed - ' . $e->getMessage() );
    318318                        wc_add_notice( $e->getMessage(), 'error' );
    319                         return;
     319                        return array(
     320                            'message' => $e->getMessage(),
     321                        );
    320322                    }
    321323                }
     
    491493                self::log( 'Response listener result: ' . print_r( $result, true ) );
    492494
    493                 // Use InvoiceRef temp, untill eWAY sorts out empty options echo
     495                // Use InvoiceRef temp, until
    494496                $order = wc_get_order( intval( $result->InvoiceReference ) );
    495497
  • woocommerce-gateway-eway/trunk/readme.txt

    r2421668 r2531558  
    33Tags: credit card, eway, payment request, gateway, woocommerce, automattic
    44Requires at least: 4.4
    5 Tested up to: 5.4
    6 Stable tag: 3.1.25
     5Tested up to: 5.
     6Stable tag: 3.
    77Requires PHP: 5.6
    88License: GPLv3
     
    8484== Changelog ==
    8585
     86
     87
     88
     89
     90
    8691= 3.1.25 - 2020-11-19 =
    8792* Fix - Allow all-zero CVNs to be used during checkout.
  • woocommerce-gateway-eway/trunk/woocommerce-gateway-eway.php

    r2421668 r2531558  
    66 * Author: WooCommerce
    77 * Author URI: https://woocommerce.com/
    8  * Version: 3.1.25
     8 * Version: 3.
    99 * Text Domain: wc-eway
    1010 * Domain Path: /languages
    1111 * Requires at least: 4.4
    12  * Tested up to: 5.4
    13  * WC tested up to: 4.0
     12 * Tested up to: 5.
     13 * WC tested up to:
    1414 * WC requires at least: 2.6
    15  * Copyright: © 2020 WooCommerce
     15 * Copyright: © 202 WooCommerce
    1616 * License: GNU General Public License v3.0
    1717 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2222}
    2323
    24 define( 'WOOCOMMERCE_GATEWAY_EWAY_VERSION', '3.1.25' ); // WRCS: DEFINED_VERSION.
     24define( 'WOOCOMMERCE_GATEWAY_EWAY_VERSION', '3.2.0' ); // WRCS: DEFINED_VERSION.
     25define( 'WOOCOMMERCE_GATEWAY_EWAY_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
     26define( 'WOOCOMMERCE_GATEWAY_EWAY_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    2527
    2628add_action( 'plugins_loaded', 'woocommerce_eway_init', 0 );
     
    8688    return array_merge( $plugin_links, $links );
    8789}
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
     103
Note: See TracChangeset for help on using the changeset viewer.