Merge branch 'master' of ssh://secure.frey.fi/var/git-repos/is-woo-payment-fps

This commit is contained in:
Frey Mansikkaniemi 2020-08-07 12:30:03 +08:00
commit c83ed45b75
4 changed files with 12 additions and 4 deletions

View File

@ -42,6 +42,10 @@ $ git clone https://github.com/invite-frey/is-woo-payment-fps.git
# 1.0 # 1.0
* First Release * First Release
# 1.1
* QR Code quality improved
* Mobile phonen number format example included
## Donations ## Donations
Donations are much appreciated if you found this resource useful. Donations are much appreciated if you found this resource useful.

View File

@ -1,14 +1,14 @@
<?php <?php
/** /**
* @package Hong_Kong_FPS_Woo_Payment * @package Hong_Kong_FPS_Woo_Payment
* @version 1.0 * @version 1.1
*/ */
/* /*
Plugin Name: Hong Kong FPS Woo Payment Plugin Name: Hong Kong FPS Woo Payment
Plugin URI: https://github.com/invite-frey/is-woo-payment-fps Plugin URI: https://github.com/invite-frey/is-woo-payment-fps
Description: Woocommerce payment method enabling Hong Kong FPS payments. Displays QR code and FPS payent if to user. Requires manual confirmation. Description: Woocommerce payment method enabling Hong Kong FPS payments. Displays QR code and FPS payent if to user. Requires manual confirmation.
Author: Frey Mansikkaniemi, invITe Services Author: Frey Mansikkaniemi, invITe Services
Version: 1.0 Version: 1.1
Author URI: http://frey.hk/ Author URI: http://frey.hk/
License: GPLv3 License: GPLv3
*/ */
@ -77,7 +77,7 @@ function its_wpf_qrcode_catch()
ob_clean(); //Clean the output buffer before printing out image ob_clean(); //Clean the output buffer before printing out image
require_once('libs/phpqrcode.php'); require_once('libs/phpqrcode.php');
header('Content-Type: image/png'); header('Content-Type: image/png');
QRcode::png($qrcode_string); QRcode::png($qrcode_string,false,QR_ECLEVEL_H);
exit(); exit();
} }
} }

View File

@ -47,3 +47,7 @@ Enables [FPS](https://www.hkma.gov.hk/eng/key-functions/international-financial-
= 1.0 = = 1.0 =
* First Release * First Release
= 1.1 =
* QR Code quality improved
* Mobile phonen number format example included

View File

@ -63,7 +63,7 @@ if( !class_exists('WC_Gateway_Invite_FPS_Payment_Gateway') ){
'account_fps_id' => array( 'account_fps_id' => array(
'title' => __('Account Id',ITS_WPF_PLUGIN_ID), 'title' => __('Account Id',ITS_WPF_PLUGIN_ID),
'type' => 'text', 'type' => 'text',
'description' => __('E-mail address, phone number or specific FPS id',ITS_WPF_PLUGIN_ID), 'description' => __('E-mail address, phone number (+852-xxxxxxxx) or specific FPS id',ITS_WPF_PLUGIN_ID),
), ),
'account_bank_code' => array( 'account_bank_code' => array(
'title' => __('Bank Code',ITS_WPF_PLUGIN_ID), 'title' => __('Bank Code',ITS_WPF_PLUGIN_ID),