Plugin Directory

Changeset 1693714


Ignore:
Timestamp:
07/10/2017 12:53:01 PM (9 years ago)
Author:
ingpsp
Message:

ING PSP WooCommerce Plugin v1.2.4

Location:
ing-psp/trunk
Files:
12 added
12 edited

Legend:

Unmodified
Added
Removed
  • ing-psp/trunk/classes/class-wc-ingpsp-bancontact.php

    r1652620 r1693714  
    3737            null,                                                    // expiration
    3838            WC_Ingpsp_Helper::getCustomerInfo($order),               // customer
    39             null,                                                    // extra information
     39            ['plugin' => INGPSP_PLUGIN_VERSION],                     // extra information
    4040            WC_Ingpsp_Helper::getWebhookUrl($this)                   // webhook_url
    4141        );
  • ing-psp/trunk/classes/class-wc-ingpsp-banktransfer.php

    r1652620 r1693714  
    3838            null,                                                    // expiration
    3939            WC_Ingpsp_Helper::getCustomerInfo($order),               // customer
    40             null,                                                    // extra information
     40            ['plugin' => INGPSP_PLUGIN_VERSION],                     // extra information
    4141            WC_Ingpsp_Helper::getWebhookUrl($this)                   // webhook_url
    4242        );
  • ing-psp/trunk/classes/class-wc-ingpsp-cashondelivery.php

    r1652620 r1693714  
    3838            null,                                                    // expiration
    3939            WC_Ingpsp_Helper::getCustomerInfo($order),               // customer
    40             null,                                                    // extra information
     40            ['plugin' => INGPSP_PLUGIN_VERSION],                     // extra information
    4141            WC_Ingpsp_Helper::getWebhookUrl($this)                   // webhook_url
    4242        );
  • ing-psp/trunk/classes/class-wc-ingpsp-creditcard.php

    r1652620 r1693714  
    3737            null,                                                        // expiration
    3838            WC_Ingpsp_Helper::getCustomerInfo($order),                   // customer
    39             null,                                                        // extra information
     39            ['plugin' => INGPSP_PLUGIN_VERSION],                         // extra information
    4040            WC_Ingpsp_Helper::getWebhookUrl($this)                       // webhook_url
    4141        );
  • ing-psp/trunk/classes/class-wc-ingpsp-helper.php

    r1654867 r1693714  
    4848    public static function getAmountInCents($amount)
    4949    {
    50         return (int) (100 * round($amount, 2));
     50        return (int) round($amount * 100);
    5151    }
    5252
  • ing-psp/trunk/classes/class-wc-ingpsp-homepay.php

    r1652620 r1693714  
    3838            null,                                                        // expiration
    3939            WC_Ingpsp_Helper::getCustomerInfo($order),                   // customer
    40             null,                                                        // extra information
     40            ['plugin' => INGPSP_PLUGIN_VERSION],                     // extra information
    4141            WC_Ingpsp_Helper::getWebhookUrl($this)                       // webhook_url
    4242        );
  • ing-psp/trunk/classes/class-wc-ingpsp-ideal.php

    r1652620 r1693714  
    4545            null,                                                    // expiration
    4646            WC_Ingpsp_Helper::getCustomerInfo($order),               // customer
    47             null,                                                    // extra information
     47            ['plugin' => INGPSP_PLUGIN_VERSION],                     // extra information
    4848            WC_Ingpsp_Helper::getWebhookUrl($this)                   // webhook_url
    4949        );
  • ing-psp/trunk/classes/class-wc-ingpsp-klarna.php

    r1652620 r1693714  
    3737            null,                                                        // expiration
    3838            WC_Ingpsp_Helper::getCustomerInfo($order),                   // customer
    39             null,                                                        // extra information
     39            ['plugin' => INGPSP_PLUGIN_VERSION],                         // extra information
    4040            WC_Ingpsp_Helper::getWebhookUrl($this),                      // webhook_url
    4141            WC_Ingpsp_Helper::getOrderLines($order)                      // order_lines
  • ing-psp/trunk/classes/class-wc-ingpsp-paypal.php

    r1652620 r1693714  
    3838            null,                                                        // expiration
    3939            WC_Ingpsp_Helper::getCustomerInfo($order),                   // customer
    40             null,                                                        // extra information
     40            ['plugin' => INGPSP_PLUGIN_VERSION],                         // extra information
    4141            WC_Ingpsp_Helper::getWebhookUrl($this)                       // webhook_url
    4242        );
  • ing-psp/trunk/classes/class-wc-ingpsp-sofort.php

    r1652620 r1693714  
    3838            null,                                                        // expiration
    3939            WC_Ingpsp_Helper::getCustomerInfo($order),                   // customer
    40             null,                                                        // extra information
     40            ['plugin' => INGPSP_PLUGIN_VERSION],                         // extra information
    4141            WC_Ingpsp_Helper::getWebhookUrl($this)                       // webhook_url
    4242        );
  • ing-psp/trunk/ingpsp.php

    r1654939 r1693714  
    44 * Plugin URI: https://www.ing.nl/
    55 * Description: ING WooCommerce plugin for ING Kassa Compleet and ING ePay markets.
    6  * Version: 1.2.3
     6 * Version: 1.2.4
    77 * Author: Ginger Payments
    88 * Author URI: https://www.gingerpayments.com/
    99 * License: The MIT License (MIT)
     10 * Text Domain: ingpsp
     11 * Domain Path: /languages
    1012 */
    1113
     
    1315    exit;
    1416}
     17
     18/**
     19 * Define ING PSP plugin version
     20 */
     21define('INGPSP_PLUGIN_VERSION', 'WooCommerce v1.2.4');
    1522
    1623add_action('plugins_loaded', 'woocommerce_ingpsp_init', 0);
     
    118125    add_filter('woocommerce_payment_gateways', 'woocommerce_add_ingpsp');
    119126    add_action('woocommerce_api_callback', array(new woocommerce_ingpsp(), 'handle_callback'));
     127    load_plugin_textdomain(WC_Ingpsp_Helper::DOMAIN, false, basename(dirname(__FILE__)).'/languages');
    120128}
  • ing-psp/trunk/readme.txt

    r1654939 r1693714  
    44Contributors: ingpsp, gingerpayments
    55Requires at least: 4.0
    6 Tested up to: 4.7.4
    7 Stable tag: 1.2.3
     6Tested up to: 4.8
     7Stable tag: 1.2.4
    88License: The MIT License (MIT)
    99License URI: https://opensource.org/licenses/MIT
     
    1616**With this official ING WooCommerce plugin you can connect your webshop to:**
    1717
    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,
     19Mastercard, V PAY, Maestro, PayPal, Klarna and Bank transfer
     20* ING ePay for the Belgium market, includes iDEAL, Bancontact, Visa, Mastercard,
     21V PAY, Maestro, and Bank transfer
     22* ING Checkout for the international market, includes iDEAL, Bancontact, Visa,
     23Mastercard, V PAY, Maestro, PayPal, SOFORT, Klarna and Bank transfer
    2124
    2225By integrating your webshop with ING Payment Service Provider (PSP) you can
    2326accept payments from your customers in an easy and trusted manner with all
    2427relevant payment methods supported.
    25 
    26 The following payment methods are supported: iDEAL, Bancontact, Visa,
    27 Mastercard, VPay, Maestro and Bank transfers.
    2828
    2929Via our merchant portal you can easily view all incoming orders, payment status
     
    5454Furthermore, you can download the integration guide from the portal and should
    5555you 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
    5661
    5762
     
    99104== Changelog ==
    100105
    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
    103110
    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
    107116
    108117= 1.2 =
     
    112121* Added HomePay payment method
    113122
    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
    116126
    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.