Changeset 1760391
- Timestamp:
- 11/07/2017 09:44:18 PM (8 years ago)
- Location:
- cardinalcommerce-oneconnect/trunk
- Files:
-
- 1 added
- 4 edited
-
README.txt (modified) (4 diffs)
-
changelog.txt (modified) (1 diff)
-
includes/abstracts/abstract-wc-gateway-cardinalpm.php (modified) (2 diffs)
-
includes/classes/class-wc-gateway-cardinalpm-payment-form.php (added)
-
php-src/CardinalCommerce/Payments/Carts/WooCommerce/Settings/AdminSettings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cardinalcommerce-oneconnect/trunk/README.txt
r1755486 r1760391 43 43 Call 877-352-8444 for more information or use the [credentials form](http://info.cardinalcommerce.com/credentials-woocommerce) 44 44 45 [CardinalCommerce Web Site](https://www.cardinalcommerce.com) 45 [CardinalCommerce Web Site](https://www.cardinalcommerce.com) 46 46 47 <h3>Why do WordPress (WooCommerce) merchants use 3-D Secure?</h3> 48 3-D Secure is an authentication initiative by the card networks to cut fraud out of the online payment system like chip cards reduce fraud at the physical register. The goal is to improve online transaction performance and accelerate eCommerce growth. Merchant benefits of using 3-D Secure include reducing fraud, increasing authorization rates, and reduce fees associated with the card networks. 47 <h3>Why do WordPress (WooCommerce) merchants use 3-D Secure?</h3> 48 3-D Secure is an authentication initiative by the card networks to cut fraud out of the online payment system like chip cards reduce fraud at the physical register. The goal is to improve online transaction performance and accelerate eCommerce growth. Merchant benefits of using 3-D Secure include reducing fraud, increasing authorization rates, and reduce fees associated with the card networks. 49 49 <h3>What is Consumer Authentication?</h3> Cardinal Consumer Authentication is a patented rules-based solution that incorporates 3-D Secure. Online transactions are authenticated with the consumer's card issuing bank. The bank determines fraud risk and takes on liability when they authenticate a transaction, saving the merchant from chargebacks. The merchant is given options on the experiences the consumer sees on their checkout page. 50 50 <h3>Why is consumer authentication important now?</h3> … … 63 63 64 64 Cardinal can take the worry and work out of accepting credit cards online. Learn how fraud impacts your webstore. Find out why it is important to have a solution in place to [combat fraud](http://info.cardinalcommerce.com/card-present-card-not-present). 65 Don't forget to checkout [our blog](http://payments.cardinalcommerce.com/) to learn all the latest in the payments space. 65 Don't forget to checkout [our blog](http://payments.cardinalcommerce.com/) to learn all the latest in the payments space. 66 66 67 67 … … 77 77 78 78 == Frequently Asked Questions == 79 = How do I get my Cardinal credentials? = 79 = How do I get my Cardinal credentials? = 80 80 CardinalCommerce provides those over the phone or via email once you have the plugin installed. Call us at 877-352-8444 or email info@cardinalcommerce.com 81 81 = Is there a cost to use the plugin? = … … 92 92 == Changelog == 93 93 94 = 1.0 = 95 * First Version 94 = 2017.11.07 - Version 1.1.0 = 95 * Added Enable / Disable gateway functionality in settings 96 * Add payment brand logos to payment gateway 97 * Fixed jQuery reload bug, ensuring plugin functionality even if jQuery is loaded twice 96 98 99 = 2017.04.12 - Version 1.0 = 100 * First release -
cardinalcommerce-oneconnect/trunk/changelog.txt
r1753370 r1760391 1 *** CardinalCommerce OneConnect 3D-Secure for Authorize.net Changelog *** 2 3 2017.11.07 - version 1.1.0 4 * Added Enable / Disable gateway functionality in settings 5 * Add payment brand logos to payment gateway 6 * Fixed jQuery reload bug, ensuring plugin functionality even if jQuery is loaded twice 7 8 2017.04.12 - version 1.0 9 * First release -
cardinalcommerce-oneconnect/trunk/includes/abstracts/abstract-wc-gateway-cardinalpm.php
r1753370 r1760391 123 123 } 124 124 125 // Payment form 126 125 127 /** 126 128 * Get gateway icon. … … 136 138 return apply_filters( 'woocommerce_gateway_icon', $icon_html, $this->id ); 137 139 } 140 141 /** 142 * Define payment fields 143 */ 144 // public function payment_fields() { 145 // $this->get_payment_form()->render(); 146 // } 147 148 /** 149 * Get the payment form class 150 */ 151 // public function get_payment_form() { 152 // return new WC_Gateway_CardinalPM_Payment_Form( $this ); 153 // } 138 154 139 155 /** -
cardinalcommerce-oneconnect/trunk/php-src/CardinalCommerce/Payments/Carts/WooCommerce/Settings/AdminSettings.php
r1683585 r1760391 11 11 12 12 private function getEnvironmentOptions() { 13 $environmentConfigs = \wc_gateway_cardinalpm()->objects()->environments(); 13 $environmentConfigs = \wc_gateway_cardinalpm()->objects()->environments(); 14 14 $keys = $environmentConfigs->getKeys(); 15 15 … … 72 72 public function form_fields() { 73 73 $mainOptions = array( 74 75 'enabled' => array( 76 'title' => esc_html__( 'Enable / Disable', 'woocommerce-plugin-framework' ), 77 'label' => esc_html__( 'Enable this gateway', 'woocommerce-plugin-framework' ), 78 'type' => 'checkbox', 79 'default' => 'yes', 80 ), 81 74 82 'ccaEnabled' => array( 75 'title' => __('Enable /Disable', 'woocommerce'),83 'title' => __('Enable / Disable CCA', 'woocommerce'), 76 84 'label' => __('Enable Cardinal Consumer Authentication', 'wc-cardinalprocessormodule'), 77 85 'type' => 'checkbox',
Note: See TracChangeset
for help on using the changeset viewer.