Plugin Directory

Changeset 2970968


Ignore:
Timestamp:
09/24/2023 06:50:00 PM (3 years ago)
Author:
cardpaysolutions
Message:

tagging version 2.1.2

Location:
authnet-cim-for-woo
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • authnet-cim-for-woo/tags/2.1.2/includes/class-wc-cardpay-authnet-api.php

    r2936762 r2970968  
    366366                    ),
    367367                ),
     368                'validationMode' => $gateway->validation_mode,
    368369            ),
    369370        );
  • authnet-cim-for-woo/tags/2.1.2/includes/class-wc-cardpay-authnet-gateway.php

    r2963853 r2970968  
    6060        $this->auto_capture     = $this->get_option( 'auto_capture' );
    6161        $this->cim_enabled      = $this->get_option( 'cim_enabled' );
     62        $this->validation_mode  = $this->get_option( 'validation_mode' );
    6263        $this->cardtypes        = $this->get_option( 'cardtypes' );
    6364
     
    176177                'description' => '',
    177178                'default'     => 'yes',
     179            ),
     180            'validation_mode' => array(
     181                'title' => __( 'Profile Validation Mode', 'woocommerce-cardpay-authnet'),
     182                'type' => 'select',
     183                'description' => 'If enabled, a zero-dollar auth is performed when creating new cusotmer profiles to validate the card',
     184                'default' => 'testMode',
     185                'options' => array(
     186                    'testMode' => 'Disabled',
     187                    'liveMode' => 'Enabled',
     188                ),
    178189            ),
    179190            'cardtypes'        => array(
  • authnet-cim-for-woo/tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-api.php

    r2936762 r2970968  
    339339                    ),
    340340                ),
     341                'validationMode' => $gateway->validation_mode,
    341342            ),
    342343        );
  • authnet-cim-for-woo/tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-gateway.php

    r2963853 r2970968  
    5858        $this->auto_capture     = $this->get_option( 'auto_capture' );
    5959        $this->cim_enabled      = $this->get_option( 'cim_enabled' );
     60        $this->validation_mode  = $this->get_option( 'validation_mode' );
    6061        $this->cardtypes        = $this->get_option( 'cardtypes' );
    6162
     
    181182                'description' => '',
    182183                'default'     => 'yes',
     184            ),
     185            'validation_mode' => array(
     186                'title' => __( 'Profile Validation Mode', 'woocommerce-cardpay-authnet'),
     187                'type' => 'select',
     188                'description' => 'If enabled, a zero-dollar auth is performed when creating new cusotmer profiles to validate the card',
     189                'default' => 'testMode',
     190                'options' => array(
     191                    'testMode' => 'Disabled',
     192                    'liveMode' => 'Enabled',
     193                ),
    183194            ),
    184195            'cardtypes'        => array(
  • authnet-cim-for-woo/tags/2.1.2/readme.txt

    r2963853 r2970968  
    44Requires at least: 4.0
    55Tested up to: 6.3
    6 Stable tag: 2.1.1
     6Stable tag: 2.1.2
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    223223* Tested compatibility with WP 6.3 and WooCommerce 8.0
    224224
     225= 2.1.2 =
     226
     227* Added customer profile validation mode
     228
    225229== Upgrade Notice ==
    226230
  • authnet-cim-for-woo/tags/2.1.2/woocommerce-cardpay-authnet.php

    r2963853 r2970968  
    44 * Plugin URI: https://www.cardpaysolutions.com/woocommerce?pid=da135059c7ef73c4
    55 * Description: Adds the Authorize.Net Payment Gateway to WooCommerce. Customer Information Manager (CIM) is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.1.1
     6 * Version: 2.1.2
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: https://www.cardpaysolutions.com/
  • authnet-cim-for-woo/trunk/includes/class-wc-cardpay-authnet-api.php

    r2936762 r2970968  
    366366                    ),
    367367                ),
     368                'validationMode' => $gateway->validation_mode,
    368369            ),
    369370        );
  • authnet-cim-for-woo/trunk/includes/class-wc-cardpay-authnet-gateway.php

    r2963853 r2970968  
    6060        $this->auto_capture     = $this->get_option( 'auto_capture' );
    6161        $this->cim_enabled      = $this->get_option( 'cim_enabled' );
     62        $this->validation_mode  = $this->get_option( 'validation_mode' );
    6263        $this->cardtypes        = $this->get_option( 'cardtypes' );
    6364
     
    176177                'description' => '',
    177178                'default'     => 'yes',
     179            ),
     180            'validation_mode' => array(
     181                'title' => __( 'Profile Validation Mode', 'woocommerce-cardpay-authnet'),
     182                'type' => 'select',
     183                'description' => 'If enabled, a zero-dollar auth is performed when creating new cusotmer profiles to validate the card',
     184                'default' => 'testMode',
     185                'options' => array(
     186                    'testMode' => 'Disabled',
     187                    'liveMode' => 'Enabled',
     188                ),
    178189            ),
    179190            'cardtypes'        => array(
  • authnet-cim-for-woo/trunk/includes/legacy/class-wc-cardpay-authnet-api.php

    r2936762 r2970968  
    339339                    ),
    340340                ),
     341                'validationMode' => $gateway->validation_mode,
    341342            ),
    342343        );
  • authnet-cim-for-woo/trunk/includes/legacy/class-wc-cardpay-authnet-gateway.php

    r2963853 r2970968  
    5858        $this->auto_capture     = $this->get_option( 'auto_capture' );
    5959        $this->cim_enabled      = $this->get_option( 'cim_enabled' );
     60        $this->validation_mode  = $this->get_option( 'validation_mode' );
    6061        $this->cardtypes        = $this->get_option( 'cardtypes' );
    6162
     
    181182                'description' => '',
    182183                'default'     => 'yes',
     184            ),
     185            'validation_mode' => array(
     186                'title' => __( 'Profile Validation Mode', 'woocommerce-cardpay-authnet'),
     187                'type' => 'select',
     188                'description' => 'If enabled, a zero-dollar auth is performed when creating new cusotmer profiles to validate the card',
     189                'default' => 'testMode',
     190                'options' => array(
     191                    'testMode' => 'Disabled',
     192                    'liveMode' => 'Enabled',
     193                ),
    183194            ),
    184195            'cardtypes'        => array(
  • authnet-cim-for-woo/trunk/readme.txt

    r2963853 r2970968  
    44Requires at least: 4.0
    55Tested up to: 6.3
    6 Stable tag: 2.1.1
     6Stable tag: 2.1.2
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    223223* Tested compatibility with WP 6.3 and WooCommerce 8.0
    224224
     225= 2.1.2 =
     226
     227* Added customer profile validation mode
     228
    225229== Upgrade Notice ==
    226230
  • authnet-cim-for-woo/trunk/woocommerce-cardpay-authnet.php

    r2963853 r2970968  
    44 * Plugin URI: https://www.cardpaysolutions.com/woocommerce?pid=da135059c7ef73c4
    55 * Description: Adds the Authorize.Net Payment Gateway to WooCommerce. Customer Information Manager (CIM) is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.1.1
     6 * Version: 2.1.2
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: https://www.cardpaysolutions.com/
Note: See TracChangeset for help on using the changeset viewer.