Changeset 2970968
- Timestamp:
- 09/24/2023 06:50:00 PM (3 years ago)
- Location:
- authnet-cim-for-woo
- Files:
-
- 12 edited
- 1 copied
-
tags/2.1.2 (copied) (copied from authnet-cim-for-woo/trunk)
-
tags/2.1.2/includes/class-wc-cardpay-authnet-api.php (modified) (1 diff)
-
tags/2.1.2/includes/class-wc-cardpay-authnet-gateway.php (modified) (2 diffs)
-
tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-api.php (modified) (1 diff)
-
tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-gateway.php (modified) (2 diffs)
-
tags/2.1.2/readme.txt (modified) (2 diffs)
-
tags/2.1.2/woocommerce-cardpay-authnet.php (modified) (1 diff)
-
trunk/includes/class-wc-cardpay-authnet-api.php (modified) (1 diff)
-
trunk/includes/class-wc-cardpay-authnet-gateway.php (modified) (2 diffs)
-
trunk/includes/legacy/class-wc-cardpay-authnet-api.php (modified) (1 diff)
-
trunk/includes/legacy/class-wc-cardpay-authnet-gateway.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-cardpay-authnet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
authnet-cim-for-woo/tags/2.1.2/includes/class-wc-cardpay-authnet-api.php
r2936762 r2970968 366 366 ), 367 367 ), 368 'validationMode' => $gateway->validation_mode, 368 369 ), 369 370 ); -
authnet-cim-for-woo/tags/2.1.2/includes/class-wc-cardpay-authnet-gateway.php
r2963853 r2970968 60 60 $this->auto_capture = $this->get_option( 'auto_capture' ); 61 61 $this->cim_enabled = $this->get_option( 'cim_enabled' ); 62 $this->validation_mode = $this->get_option( 'validation_mode' ); 62 63 $this->cardtypes = $this->get_option( 'cardtypes' ); 63 64 … … 176 177 'description' => '', 177 178 '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 ), 178 189 ), 179 190 'cardtypes' => array( -
authnet-cim-for-woo/tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-api.php
r2936762 r2970968 339 339 ), 340 340 ), 341 'validationMode' => $gateway->validation_mode, 341 342 ), 342 343 ); -
authnet-cim-for-woo/tags/2.1.2/includes/legacy/class-wc-cardpay-authnet-gateway.php
r2963853 r2970968 58 58 $this->auto_capture = $this->get_option( 'auto_capture' ); 59 59 $this->cim_enabled = $this->get_option( 'cim_enabled' ); 60 $this->validation_mode = $this->get_option( 'validation_mode' ); 60 61 $this->cardtypes = $this->get_option( 'cardtypes' ); 61 62 … … 181 182 'description' => '', 182 183 '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 ), 183 194 ), 184 195 'cardtypes' => array( -
authnet-cim-for-woo/tags/2.1.2/readme.txt
r2963853 r2970968 4 4 Requires at least: 4.0 5 5 Tested up to: 6.3 6 Stable tag: 2.1. 16 Stable tag: 2.1.2 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 223 223 * Tested compatibility with WP 6.3 and WooCommerce 8.0 224 224 225 = 2.1.2 = 226 227 * Added customer profile validation mode 228 225 229 == Upgrade Notice == 226 230 -
authnet-cim-for-woo/tags/2.1.2/woocommerce-cardpay-authnet.php
r2963853 r2970968 4 4 * Plugin URI: https://www.cardpaysolutions.com/woocommerce?pid=da135059c7ef73c4 5 5 * 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. 16 * Version: 2.1.2 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: https://www.cardpaysolutions.com/ -
authnet-cim-for-woo/trunk/includes/class-wc-cardpay-authnet-api.php
r2936762 r2970968 366 366 ), 367 367 ), 368 'validationMode' => $gateway->validation_mode, 368 369 ), 369 370 ); -
authnet-cim-for-woo/trunk/includes/class-wc-cardpay-authnet-gateway.php
r2963853 r2970968 60 60 $this->auto_capture = $this->get_option( 'auto_capture' ); 61 61 $this->cim_enabled = $this->get_option( 'cim_enabled' ); 62 $this->validation_mode = $this->get_option( 'validation_mode' ); 62 63 $this->cardtypes = $this->get_option( 'cardtypes' ); 63 64 … … 176 177 'description' => '', 177 178 '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 ), 178 189 ), 179 190 'cardtypes' => array( -
authnet-cim-for-woo/trunk/includes/legacy/class-wc-cardpay-authnet-api.php
r2936762 r2970968 339 339 ), 340 340 ), 341 'validationMode' => $gateway->validation_mode, 341 342 ), 342 343 ); -
authnet-cim-for-woo/trunk/includes/legacy/class-wc-cardpay-authnet-gateway.php
r2963853 r2970968 58 58 $this->auto_capture = $this->get_option( 'auto_capture' ); 59 59 $this->cim_enabled = $this->get_option( 'cim_enabled' ); 60 $this->validation_mode = $this->get_option( 'validation_mode' ); 60 61 $this->cardtypes = $this->get_option( 'cardtypes' ); 61 62 … … 181 182 'description' => '', 182 183 '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 ), 183 194 ), 184 195 'cardtypes' => array( -
authnet-cim-for-woo/trunk/readme.txt
r2963853 r2970968 4 4 Requires at least: 4.0 5 5 Tested up to: 6.3 6 Stable tag: 2.1. 16 Stable tag: 2.1.2 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 223 223 * Tested compatibility with WP 6.3 and WooCommerce 8.0 224 224 225 = 2.1.2 = 226 227 * Added customer profile validation mode 228 225 229 == Upgrade Notice == 226 230 -
authnet-cim-for-woo/trunk/woocommerce-cardpay-authnet.php
r2963853 r2970968 4 4 * Plugin URI: https://www.cardpaysolutions.com/woocommerce?pid=da135059c7ef73c4 5 5 * 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. 16 * Version: 2.1.2 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: https://www.cardpaysolutions.com/
Note: See TracChangeset
for help on using the changeset viewer.