Automattic\WooCommerce\Internal\Admin\Settings

PaymentProviders::get_suggestion_order_map_id()publicWC 1.0

Get the ID of the suggestion order map entry.

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

Хуков нет.

Возвращает

Строку. The ID of the suggestion order map entry.

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

$PaymentProviders = new PaymentProviders();
$PaymentProviders->get_suggestion_order_map_id( $suggestion_id ): string;
$suggestion_id(строка) (обязательный)
The ID of the suggestion.

Код PaymentProviders::get_suggestion_order_map_id() WC 9.6.1

public function get_suggestion_order_map_id( string $suggestion_id ): string {
	return self::SUGGESTION_ORDERING_PREFIX . $suggestion_id;
}