Automattic\WooCommerce\Internal\Admin\Settings

PaymentsProviders::get_suggestion_order_map_idpublicWC 1.0

Get the ID of the suggestion order map entry.

Method of the class: PaymentsProviders{}

No Hooks.

Returns

String. The ID of the suggestion order map entry.

Usage

$PaymentsProviders = new PaymentsProviders();
$PaymentsProviders->get_suggestion_order_map_id( $suggestion_id ): string;
$suggestion_id(string) (required)
The ID of the suggestion.

PaymentsProviders::get_suggestion_order_map_id() code WC 10.7.0

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