Automattic\WooCommerce\Internal\Admin\Settings

PaymentsProviders::get_order_mappublicWC 1.0

Get the payment providers order map.

Метод класса: PaymentsProviders{}

Хуков нет.

Возвращает

Массив. The payment providers order map.

Использование

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

Код PaymentsProviders::get_order_map() WC 10.8.1

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