id = ITS_WPF_PLUGIN_ID;
$this->icon = plugins_url('assets/fps.png', __FILE__);
$this->has_fields = true;
$this->method_title = __('Hong Kong Faster Payment System (FPS)',ITS_WPF_PLUGIN_ID);
$this->method_description = __("Hong Kong interbank real time transfer using account holder ids and QR codes.",ITS_WPF_PLUGIN_ID);
$this->supports = array(
'products'
);
$this->init_form_fields();
$this->init_settings();
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->enabled = $this->get_option( 'enabled' );
$this->account_id_type = $this->get_option( 'account_id_type' );
$this->account_fps_id = $this->get_option( 'account_fps_id' );
$this->account_bank_code = $this->get_option( 'account_bank_code' );
$this->ask_to_pay = $this->get_option( 'ask_to_pay' );
$this->fps_payment_reference_guide = $this->get_option( 'fps_payment_reference_guide' );
$this->write_qr_code_to_file = $this->get_option('write_qr_code_to_file');
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
}
public function init_form_fields() {
$this->form_fields = array(
'enabled' => array(
'title' => __('Enable/Disable',ITS_WPF_PLUGIN_ID),
'label' => __('Enable Hong Kong Faster Payment System',ITS_WPF_PLUGIN_ID),
'type' => 'checkbox',
'description' => '',
'default' => 'no'
),
'title' => array(
'title' => __('Title',ITS_WPF_PLUGIN_ID),
'type' => 'text',
'description' => __('This controls the title which the user sees during checkout.',ITS_WPF_PLUGIN_ID),
'default' => __('Hong Kong FPS',ITS_WPF_PLUGIN_ID),
'desc_tip' => true
),
'description' => array(
'title' => __('Description',ITS_WPF_PLUGIN_ID),
'type' => 'textarea',
'description' => __('This controls the description which the user sees during checkout.',ITS_WPF_PLUGIN_ID),
'default' => __('Pay with HK Faster Payment System (FPS). Scan the presented QR code with your bank\'s app or enter the payee FPS id.',ITS_WPF_PLUGIN_ID),
),
'account_id_type' => array(
'title' => __('Account Id Type',ITS_WPF_PLUGIN_ID),
'type' => 'select',
'options' => array(
'02' => __('FPS ID',ITS_WPF_PLUGIN_ID),
'03' => __('Mobile Phone Number',ITS_WPF_PLUGIN_ID),
'04' => __('Email Address',ITS_WPF_PLUGIN_ID)
),
'default' => '02'
),
'account_fps_id' => array(
'title' => __('Account Id',ITS_WPF_PLUGIN_ID),
'type' => 'text',
'description' => __('E-mail address, phone number (+852-xxxxxxxx) or specific FPS id',ITS_WPF_PLUGIN_ID),
),
'account_bank_code' => array(
'title' => __('Bank Code',ITS_WPF_PLUGIN_ID),
'type' => 'text',
'description' => __('Three digit Hong Kong bank code.',ITS_WPF_PLUGIN_ID)
),
'fps_payment_reference_guide' => array(
'title' => __('Payment Reference Guide',ITS_WPF_PLUGIN_ID),
'type' => 'textarea',
'default' => __('Please use the code below as a Message to Payee when initiating the transaction in your bank\'s app.',ITS_WPF_PLUGIN_ID),
'description' => __('Instructions visible to the customer for providing payment reference number after payment. This is not visble of Ask to Pay is active.',ITS_WPF_PLUGIN_ID)
),
'ask_to_pay' => array(
'title' => __('Ask to Pay Enabled',ITS_WPF_PLUGIN_ID),
'label' => __('Ask to Pay Enabled',ITS_WPF_PLUGIN_ID),
'type' => 'checkbox',
'description' => __('The ask to pay function must be enabled by your bank in order to use payment reference numbers.',ITS_WPF_PLUGIN_ID),
'default' => 'no'
),
);
}
public function validate_text_field($key, $value){
switch($key){
case 'account_fps_id':
$fps_id = trim($value);
switch($this->get_option( 'account_id_type' )){
case '03':
if( preg_match('/^\+852\-[0-9]{8}$/', $fps_id) ){
return $fps_id;
}else{
function my_error_notice() {
?>
account_fps_id;
}
break;
case '04':
if( preg_match('/^(?!(?:(?:\x22?\x5C[\x00-\x7E]\x22?)|(?:\x22?[^\x5C\x22]\x22?)){255,})(?!(?:(?:\x22?\x5C[\x00-\x7E]\x22?)|(?:\x22?[^\x5C\x22]\x22?)){65,}@)(?:(?:[\x21\x23-\x27\x2A\x2B\x2D\x2F-\x39\x3D\x3F\x5E-\x7E]+)|(?:\x22(?:[\x01-\x08\x0B\x0C\x0E-\x1F\x21\x23-\x5B\x5D-\x7F]|(?:\x5C[\x00-\x7F]))*\x22))(?:\.(?:(?:[\x21\x23-\x27\x2A\x2B\x2D\x2F-\x39\x3D\x3F\x5E-\x7E]+)|(?:\x22(?:[\x01-\x08\x0B\x0C\x0E-\x1F\x21\x23-\x5B\x5D-\x7F]|(?:\x5C[\x00-\x7F]))*\x22)))*@(?:(?:(?!.*[^.]{64,})(?:(?:(?:xn--)?[a-z0-9]+(?:-[a-z0-9]+)*\.){1,126}){1,}(?:(?:[a-z][a-z0-9]*)|(?:(?:xn--)[a-z0-9]+))(?:-[a-z0-9]+)*)|(?:\[(?:(?:IPv6:(?:(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){7})|(?:(?!(?:.*[a-f0-9][:\]]){7,})(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,5})?::(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,5})?)))|(?:(?:IPv6:(?:(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){5}:)|(?:(?!(?:.*[a-f0-9]:){5,})(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,3})?::(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,3}:)?)))?(?:(?:25[0-5])|(?:2[0-4][0-9])|(?:1[0-9]{2})|(?:[1-9]?[0-9]))(?:\.(?:(?:25[0-5])|(?:2[0-4][0-9])|(?:1[0-9]{2})|(?:[1-9]?[0-9]))){3}))\]))$/', $fps_id)){
return $fps_id;
}else{
function my_error_notice() {
?>