HEX
Server: LiteSpeed
System: Linux server902.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: deshuvsd (2181)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/deshuvsd/www/wp-content/plugins/bangladeshi-payment-gateways/includes/functions.php
<?php
/**
 * Functions here.
 *
 * @package BDPaymentGateways
 */

function bdpg_get_instruction_by_gateway( $gateway ) {
	switch ( $gateway ) {
		case 'bkash':
			return __(
				'
				01. Go to your bKash app or Dial *247#
				02. Choose “Send Money”
				03. Enter below bKash Account Number
				04. Enter <b>total amount</b>
				06. Now enter your bKash Account PIN to confirm the transaction
				07. Copy Transaction ID from payment confirmation message and paste that Transaction ID below',
				'bangladeshi-payment-gateways'
			);
		break;

		case 'rocket':
			return __(
				'
				01. Go to your Rocket app or Dial *322#
				02. Choose “Send Money”
				03. Enter below Rocket Account Number
				04. Enter <b>total amount</b>
				06. Now enter your Rocket Account PIN to confirm the transaction
				07. Copy Transaction ID from payment confirmation message and paste that Transaction ID below',
				'bangladeshi-payment-gateways'
			);
		break;

		case 'nagad':
			return __(
				'
				01. Go to your Nagad app or Dial *167#
				02. Choose “Send Money”
				03. Enter below Nagad Account Number
				04. Enter <b>total amount</b>
				06. Now enter your Nagad Account PIN to confirm the transaction
				07. Copy Transaction ID from payment confirmation message and paste that Transaction ID below',
				'bangladeshi-payment-gateways'
			);
		break;

		case 'upay':
			return __(
				'
				01. Go to your Upay app or Dial *268#
				02. Choose “Send Money”
				03. Enter below Upay Account Number
				04. Enter <b>total amount</b>
				06. Now enter your Upay Account PIN to confirm the transaction
				07. Copy Transaction ID from payment confirmation message and paste that Transaction ID below',
				'bangladeshi-payment-gateways'
			);
		break;

		default:
			return '';
	}

}