Changeset 1693714
- Timestamp:
- 07/10/2017 12:53:01 PM (9 years ago)
- Location:
- ing-psp/trunk
- Files:
-
- 12 added
- 12 edited
-
classes/class-wc-ingpsp-bancontact.php (modified) (1 diff)
-
classes/class-wc-ingpsp-banktransfer.php (modified) (1 diff)
-
classes/class-wc-ingpsp-cashondelivery.php (modified) (1 diff)
-
classes/class-wc-ingpsp-creditcard.php (modified) (1 diff)
-
classes/class-wc-ingpsp-helper.php (modified) (1 diff)
-
classes/class-wc-ingpsp-homepay.php (modified) (1 diff)
-
classes/class-wc-ingpsp-ideal.php (modified) (1 diff)
-
classes/class-wc-ingpsp-klarna.php (modified) (1 diff)
-
classes/class-wc-ingpsp-paypal.php (modified) (1 diff)
-
classes/class-wc-ingpsp-sofort.php (modified) (1 diff)
-
ingpsp.php (modified) (3 diffs)
-
languages (added)
-
languages/ingpsp-de_DE.mo (added)
-
languages/ingpsp-de_DE.po (added)
-
languages/ingpsp-en_GB.mo (added)
-
languages/ingpsp-en_GB.po (added)
-
languages/ingpsp-en_US.mo (added)
-
languages/ingpsp-en_US.po (added)
-
languages/ingpsp-fr_FR.mo (added)
-
languages/ingpsp-fr_FR.po (added)
-
languages/ingpsp-nl_NL.mo (added)
-
languages/ingpsp-nl_NL.po (added)
-
languages/ingpsp.pot (added)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ing-psp/trunk/classes/class-wc-ingpsp-bancontact.php
r1652620 r1693714 37 37 null, // expiration 38 38 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 39 null,// extra information39 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 40 40 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 41 41 ); -
ing-psp/trunk/classes/class-wc-ingpsp-banktransfer.php
r1652620 r1693714 38 38 null, // expiration 39 39 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 40 null,// extra information40 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 41 41 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 42 42 ); -
ing-psp/trunk/classes/class-wc-ingpsp-cashondelivery.php
r1652620 r1693714 38 38 null, // expiration 39 39 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 40 null,// extra information40 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 41 41 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 42 42 ); -
ing-psp/trunk/classes/class-wc-ingpsp-creditcard.php
r1652620 r1693714 37 37 null, // expiration 38 38 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 39 null,// extra information39 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 40 40 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 41 41 ); -
ing-psp/trunk/classes/class-wc-ingpsp-helper.php
r1654867 r1693714 48 48 public static function getAmountInCents($amount) 49 49 { 50 return (int) (100 * round($amount, 2));50 return (int) round($amount * 100); 51 51 } 52 52 -
ing-psp/trunk/classes/class-wc-ingpsp-homepay.php
r1652620 r1693714 38 38 null, // expiration 39 39 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 40 null,// extra information40 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 41 41 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 42 42 ); -
ing-psp/trunk/classes/class-wc-ingpsp-ideal.php
r1652620 r1693714 45 45 null, // expiration 46 46 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 47 null,// extra information47 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 48 48 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 49 49 ); -
ing-psp/trunk/classes/class-wc-ingpsp-klarna.php
r1652620 r1693714 37 37 null, // expiration 38 38 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 39 null,// extra information39 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 40 40 WC_Ingpsp_Helper::getWebhookUrl($this), // webhook_url 41 41 WC_Ingpsp_Helper::getOrderLines($order) // order_lines -
ing-psp/trunk/classes/class-wc-ingpsp-paypal.php
r1652620 r1693714 38 38 null, // expiration 39 39 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 40 null,// extra information40 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 41 41 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 42 42 ); -
ing-psp/trunk/classes/class-wc-ingpsp-sofort.php
r1652620 r1693714 38 38 null, // expiration 39 39 WC_Ingpsp_Helper::getCustomerInfo($order), // customer 40 null,// extra information40 ['plugin' => INGPSP_PLUGIN_VERSION], // extra information 41 41 WC_Ingpsp_Helper::getWebhookUrl($this) // webhook_url 42 42 ); -
ing-psp/trunk/ingpsp.php
r1654939 r1693714 4 4 * Plugin URI: https://www.ing.nl/ 5 5 * Description: ING WooCommerce plugin for ING Kassa Compleet and ING ePay markets. 6 * Version: 1.2. 36 * Version: 1.2.4 7 7 * Author: Ginger Payments 8 8 * Author URI: https://www.gingerpayments.com/ 9 9 * License: The MIT License (MIT) 10 * Text Domain: ingpsp 11 * Domain Path: /languages 10 12 */ 11 13 … … 13 15 exit; 14 16 } 17 18 /** 19 * Define ING PSP plugin version 20 */ 21 define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.2.4'); 15 22 16 23 add_action('plugins_loaded', 'woocommerce_ingpsp_init', 0); … … 118 125 add_filter('woocommerce_payment_gateways', 'woocommerce_add_ingpsp'); 119 126 add_action('woocommerce_api_callback', array(new woocommerce_ingpsp(), 'handle_callback')); 127 load_plugin_textdomain(WC_Ingpsp_Helper::DOMAIN, false, basename(dirname(__FILE__)).'/languages'); 120 128 } -
ing-psp/trunk/readme.txt
r1654939 r1693714 4 4 Contributors: ingpsp, gingerpayments 5 5 Requires at least: 4.0 6 Tested up to: 4. 7.47 Stable tag: 1.2. 36 Tested up to: 4.8 7 Stable tag: 1.2.4 8 8 License: The MIT License (MIT) 9 9 License URI: https://opensource.org/licenses/MIT … … 16 16 **With this official ING WooCommerce plugin you can connect your webshop to:** 17 17 18 * ING Kassa Compleet for the Dutch market 19 * ING ePay for the Belgium market 20 * ING Checkout for the Corporate Dutch market 18 * ING Kassa Compleet for the Dutch market, includes iDEAL, Bancontact, Visa, 19 Mastercard, V PAY, Maestro, PayPal, Klarna and Bank transfer 20 * ING ePay for the Belgium market, includes iDEAL, Bancontact, Visa, Mastercard, 21 V PAY, Maestro, and Bank transfer 22 * ING Checkout for the international market, includes iDEAL, Bancontact, Visa, 23 Mastercard, V PAY, Maestro, PayPal, SOFORT, Klarna and Bank transfer 21 24 22 25 By integrating your webshop with ING Payment Service Provider (PSP) you can 23 26 accept payments from your customers in an easy and trusted manner with all 24 27 relevant payment methods supported. 25 26 The following payment methods are supported: iDEAL, Bancontact, Visa,27 Mastercard, VPay, Maestro and Bank transfers.28 28 29 29 Via our merchant portal you can easily view all incoming orders, payment status … … 54 54 Furthermore, you can download the integration guide from the portal and should 55 55 you have any questions, our support desk is there to help you. 56 57 == Pre-requisites to install the plug-ins == 58 59 - PHP v5.4 and above 60 - MySQL v5.4 and above 56 61 57 62 … … 99 104 == Changelog == 100 105 101 = 1.0 = 102 * Initial release 106 = 1.2.4 = 107 * Added localisation support 108 * Added German, French and Dutch languages 109 * Added plugin version information to orders 103 110 104 = 1.1 = 105 * Updated ING PSP API bindings library 106 * Code re-factoring and cleanup 111 = 1.2.3 = 112 * Updated ing-php library to version 1.2.8 113 114 = 1.2.2 = 115 * Updated ing-php library to version 1.2.7 107 116 108 117 = 1.2 = … … 112 121 * Added HomePay payment method 113 122 114 = 1.2.2 = 115 Updated ing-php library to version 1.2.7 123 = 1.1 = 124 * Updated ING PSP API bindings library 125 * Code re-factoring and cleanup 116 126 117 = 1. 2.3=118 Updated ing-php library to version 1.2.8 127 = 1.0 = 128 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.