Automattic\WooCommerce\Internal\Admin\Settings
PaymentProviders::get_suggestion_order_map_id
Get the ID of the suggestion order map entry.
Method of the class: PaymentProviders{}
No Hooks.
Returns
String
. The ID of the suggestion order map entry.
Usage
$PaymentProviders = new PaymentProviders(); $PaymentProviders->get_suggestion_order_map_id( $suggestion_id ): string;
- $suggestion_id(string) (required)
- The ID of the suggestion.
PaymentProviders::get_suggestion_order_map_id() PaymentProviders::get suggestion order map id code WC 9.9.3
public function get_suggestion_order_map_id( string $suggestion_id ): string { return self::SUGGESTION_ORDERING_PREFIX . $suggestion_id; }