WooCommerce Code Reference

WC_Payment_Gateways Uses AccessiblePrivateMethods

Payment gateways class.

Table of Contents

$payment_gateways  : array<string|int, mixed>
Payment gateway classes.
$_instance  : WC_Payment_Gateways
The single instance of the class.
__clone()  : mixed
Cloning is forbidden.
__construct()  : mixed
Initialize payment gateways.
__wakeup()  : mixed
Unserializing instances of this class is forbidden.
get_available_payment_gateways()  : array<string|int, mixed>
Get available gateways.
get_payment_gateway_ids()  : array<string|int, mixed>
Get array of registered gateway ids
init()  : mixed
Load gateways and hook in functions.
instance()  : WC_Payment_Gateways
Main WC_Payment_Gateways Instance.
payment_gateways()  : array<string|int, mixed>
Get gateways.
process_admin_options()  : mixed
Save options in admin.
set_current_gateway()  : mixed
Set the current, active gateway.
filter_valid_gateway_class()  : bool
Callback for array filter. Returns true if gateway is of correct type.
should_load_paypal_standard()  : bool
Determines if PayPal Standard should be loaded.
notify_admin_payment_gateway_enabled()  : bool
Email the site admin when a payment gateway has been enabled.
on_payment_gateways_initialized()  : mixed
Hook into payment gateway settings changes.
payment_gateway_settings_option_changed()  : mixed
Callback for when a gateway settings option was added or updated.
was_gateway_enabled()  : bool
Determines from changes in settings if a gateway was enabled.

Properties

Methods

get_available_payment_gateways()

Get available gateways.

public get_available_payment_gateways() : array<string|int, mixed>
Return values
array<string|int, mixed>

get_payment_gateway_ids()

Get array of registered gateway ids

public get_payment_gateway_ids() : array<string|int, mixed>
Tags
since
2.6.0
Return values
array<string|int, mixed>of strings

set_current_gateway()

Set the current, active gateway.

public set_current_gateway(array<string|int, mixed> $gateways) : mixed
Parameters
$gateways : array<string|int, mixed>

Available payment gateways.

Return values
mixed

filter_valid_gateway_class()

Callback for array filter. Returns true if gateway is of correct type.

protected filter_valid_gateway_class(object $gateway) : bool
Parameters
$gateway : object

Gateway to check.

Tags
since
3.6.0
Return values
bool

should_load_paypal_standard()

Determines if PayPal Standard should be loaded.

protected should_load_paypal_standard() : bool
Tags
since
5.5.0
Return values
boolWhether PayPal Standard should be loaded or not.

notify_admin_payment_gateway_enabled()

Email the site admin when a payment gateway has been enabled.

private notify_admin_payment_gateway_enabled(WC_Payment_Gateway $gateway) : bool
Parameters
$gateway : WC_Payment_Gateway

The gateway that was enabled.

Tags
since
8.5.0
Return values
boolWhether the email was sent or not.

payment_gateway_settings_option_changed()

Callback for when a gateway settings option was added or updated.

private payment_gateway_settings_option_changed(WC_Payment_Gateway $gateway, mixed $value, string $option[, mixed $old_value = null ]) : mixed
Parameters
$gateway : WC_Payment_Gateway

The gateway for which the option was added or updated.

$value : mixed

New value.

$option : string

Option name.

$old_value : mixed = null

Old value. null when called via add_option_ hook.

Tags
since
8.5.0
Return values
mixed

was_gateway_enabled()

Determines from changes in settings if a gateway was enabled.

private was_gateway_enabled(array<string|int, mixed> $value[, array<string|int, mixed> $old_value = null ]) : bool
Parameters
$value : array<string|int, mixed>

New value.

$old_value : array<string|int, mixed> = null

Old value.

Return values
boolWhether the gateway was enabled or not.