Automattic\WooCommerce\Internal\Admin\Settings

PaymentsProviders::get_order_mappublicWC 1.0

Get the payment providers order map.

Method of the class: PaymentsProviders{}

No Hooks.

Returns

Array. The payment providers order map.

Usage

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

PaymentsProviders::get_order_map() code WC 10.7.0

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