Plugin Directory

Changeset 1941473


Ignore:
Timestamp:
09/14/2018 05:16:38 PM (8 years ago)
Author:
j.conti
Message:

Version Trank 1.1.1

Location:
woo-redsys-gateway-light/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-redsys-gateway-light/trunk/readme.txt

    r1895436 r1941473  
    33Tags: woocommerce, redsys, pasarela redsys, gateway, redsys gateway, redsys pasarela, redsys woocommerce, woocommerce redsys, iupay, Iupay gateway, Iupay woocommerce, woocommerce iupay, iupay pasarela, pasarela iupay
    44Requires at least: 4.0
    5 Tested up to: 4.9.6
     5Tested up to: 4.9.8
    66Stable tag: 1.1.0
    77License: GPLv2 or later
     
    4242* Checkout logo customization.
    4343* Iupay Gateway is included with its own setting page
     44* Tokenization
     45* Pay with one click
     46* Preauthorizations
     47* Approve preauthorizations from WooCommerce order
     48* Direct Debit
     49* Private Products
    4450* Second Terminal number. Very useful for security purpose.
    4551* Sequential Invoice Number, essential in Spain by the Public Treasury.
     52* Refund from Order.
    4653* Error action selection, what do you want that happen when a user make an error on the Gateway?
    4754* Export Order to CSV, export all date orders between two dates to CSV.
    4855* Pay with 1 click.
    49 * Refund from Order.
    5056* And more to come.
    5157
     
    7480== Changelog ==
    7581
     82== 1.1.1 ==
     83
     84* Removed message about Mcrypt when PHP is 7.0 or above
     85
    7686== 1.1.0 ==
    7787* Added Redsys API for PHP 5.x and 7.x
  • woo-redsys-gateway-light/trunk/woocommerce-redsys.php

    r1895436 r1941473  
    1515 * Author: José Conti
    1616 * Author URI: https://www.joseconti.com/
    17  * Tested up to: 4.6
     17 * Tested up to: 4.8
    1818 * Text Domain: woo-redsys-gateway-light
    1919 * Domain Path: /languages/
     
    154154        }
    155155        public static function admin_notice_mcrypt_encrypt() {
    156             if ( ! function_exists( 'mcrypt_encrypt' ) ) {
     156            if ( ! function_exists( 'mcrypt_encrypt' ) && ( version_compare( PHP_VERSION, '7.0', '!<' ) ) ) {
    157157                $class   = 'error';
    158158                $message = __( 'WARNING: The PHP mcrypt_encrypt module is not installed on your server. The API Redsys SHA-256 needs this module in order to work.  Please contact your hosting provider and ask them to install it. Otherwise, your shop will stop working.', 'woo-redsys-gateway-light' );
Note: See TracChangeset for help on using the changeset viewer.