Changeset 1941473
- Timestamp:
- 09/14/2018 05:16:38 PM (8 years ago)
- Location:
- woo-redsys-gateway-light/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
woocommerce-redsys.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-redsys-gateway-light/trunk/readme.txt
r1895436 r1941473 3 3 Tags: woocommerce, redsys, pasarela redsys, gateway, redsys gateway, redsys pasarela, redsys woocommerce, woocommerce redsys, iupay, Iupay gateway, Iupay woocommerce, woocommerce iupay, iupay pasarela, pasarela iupay 4 4 Requires at least: 4.0 5 Tested up to: 4.9. 65 Tested up to: 4.9.8 6 6 Stable tag: 1.1.0 7 7 License: GPLv2 or later … … 42 42 * Checkout logo customization. 43 43 * 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 44 50 * Second Terminal number. Very useful for security purpose. 45 51 * Sequential Invoice Number, essential in Spain by the Public Treasury. 52 * Refund from Order. 46 53 * Error action selection, what do you want that happen when a user make an error on the Gateway? 47 54 * Export Order to CSV, export all date orders between two dates to CSV. 48 55 * Pay with 1 click. 49 * Refund from Order.50 56 * And more to come. 51 57 … … 74 80 == Changelog == 75 81 82 == 1.1.1 == 83 84 * Removed message about Mcrypt when PHP is 7.0 or above 85 76 86 == 1.1.0 == 77 87 * Added Redsys API for PHP 5.x and 7.x -
woo-redsys-gateway-light/trunk/woocommerce-redsys.php
r1895436 r1941473 15 15 * Author: José Conti 16 16 * Author URI: https://www.joseconti.com/ 17 * Tested up to: 4. 617 * Tested up to: 4.8 18 18 * Text Domain: woo-redsys-gateway-light 19 19 * Domain Path: /languages/ … … 154 154 } 155 155 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', '!<' ) ) ) { 157 157 $class = 'error'; 158 158 $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.