rebase on oct-10-2023
This commit is contained in:
@@ -28,6 +28,20 @@ class WC_Gateway_BACS extends WC_Payment_Gateway {
|
||||
*/
|
||||
public $locale;
|
||||
|
||||
/**
|
||||
* Gateway instructions that will be added to the thank you page and emails.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $instructions;
|
||||
|
||||
/**
|
||||
* Account details.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $account_details;
|
||||
|
||||
/**
|
||||
* Constructor for the gateway.
|
||||
*/
|
||||
|
||||
@@ -21,6 +21,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||
*/
|
||||
class WC_Gateway_Cheque extends WC_Payment_Gateway {
|
||||
|
||||
/**
|
||||
* Gateway instructions that will be added to the thank you page and emails.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $instructions;
|
||||
|
||||
/**
|
||||
* Constructor for the gateway.
|
||||
*/
|
||||
|
||||
@@ -23,6 +23,27 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||
*/
|
||||
class WC_Gateway_COD extends WC_Payment_Gateway {
|
||||
|
||||
/**
|
||||
* Gateway instructions that will be added to the thank you page and emails.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $instructions;
|
||||
|
||||
/**
|
||||
* Enable for shipping methods.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $enable_for_methods;
|
||||
|
||||
/**
|
||||
* Enable for virtual products.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $enable_for_virtual;
|
||||
|
||||
/**
|
||||
* Constructor for the gateway.
|
||||
*/
|
||||
|
||||
@@ -35,6 +35,42 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
|
||||
*/
|
||||
public static $log = false;
|
||||
|
||||
/**
|
||||
* Whether the test mode is enabled.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $testmode;
|
||||
|
||||
/**
|
||||
* Whether the debug mode is enabled.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $debug;
|
||||
|
||||
/**
|
||||
* Email address to send payments to.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $email;
|
||||
|
||||
/**
|
||||
* Receiver email.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $receiver_email;
|
||||
|
||||
/**
|
||||
* Identity token.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $identity_token;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor for the gateway.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user