is-woo-payment-fps/hong-kong-fps-woo-payment.php
Frey Mansikkaniemi b0d9f87a5c bumped up version
2020-12-24 16:42:41 +08:00

102 lines
2.4 KiB
PHP

<?php
/**
* @package Hong_Kong_FPS_Woo_Payment
* @version 1.44
*/
/*
Plugin Name: Hong Kong FPS Woo Payment
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.
Author: invITe Services
Version: 1.44
Author URI: http://frey.hk/
License: GPLv3
*/
if (!defined('ABSPATH')) {
return;
}
/**
* Check if WooCommerce is active
**/
if (
!in_array(
'woocommerce/woocommerce.php',
apply_filters('active_plugins', get_option('active_plugins'))
)
) {
add_action('admin_notices', function () {
?>
<div class="error notice">
<strong><?php __('Woo Payment FPS requires WooCommerce to be installed & activated.',ITS_WPF_PLUGIN_ID)?></strong>
</div>
<?php
});
return;
}
define('ITS_WPF_PLUGIN_ID','its_wpf_payment_gateway');
/**
* Register payment gateway class
*/
add_filter( 'woocommerce_payment_gateways', 'its_wpf_add_class' );
function its_wpf_add_class( $methods ){
$methods[] = 'WC_Gateway_Invite_FPS_Payment_Gateway';
return $methods;
}
/**
* Change text on the Pay order button.
*/
add_filter('woocommerce_available_payment_gateways', 'its_wpf_pay_order_label');
function its_wpf_pay_order_label($gateways) {
if(!empty($gateways[ITS_WPF_PLUGIN_ID])) {
$gateways[ITS_WPF_PLUGIN_ID]->order_button_text = __('Confirm FPS Payment Completed',ITS_WPF_PLUGIN_ID);
}
return $gateways;
}
/**
* Change text on the Thank You page.
*/
add_filter('woocommerce_thankyou_' . ITS_WPF_PLUGIN_ID, 'its_wpf_thankyou', 10, 1);
function its_wpf_thankyou($order_id){
global $woocommerce;
$order = wc_get_order( $order_id );
echo '<p>';
echo __('Your payment will be confirmed manually.',ITS_WPF_PLUGIN_ID);
echo '</p><p>';
echo __('FPS Transaction Reference: ',ITS_WPF_PLUGIN_ID) . $order->get_transaction_id();
}
/**
* Load payment gateway class
*/
add_action( 'plugins_loaded', 'its_wpf_init_gateway' );
function its_wpf_init_gateway(){
require_once 'wc-gateway-invite-fps-payment-gateway-class.php';
}
/**
* Load class that generates qrcode data.
*/
add_action('init', 'its_wpf_init_fps_qrcode_class');
function its_wpf_init_fps_qrcode_class(){
require_once 'its-fps-qrcodedata-class.php';
}