Automattic\WooCommerce\Internal\Admin\Settings

PaymentProviders::get_order_mappublicWC 1.0

Get the payment providers order map.

Method of the class: PaymentProviders{}

No Hooks.

Returns

Array. The payment providers order map.

Usage

$PaymentProviders = new PaymentProviders();
$PaymentProviders->get_order_map(): array;

PaymentProviders::get_order_map() code WC 9.9.4

public function get_order_map(): array {
	// This will also handle backwards compatibility.
	return $this->enhance_order_map( get_option( self::PROVIDERS_ORDER_OPTION, array() ) );
}