Automattic\WooCommerce\Internal\Admin\Settings
PaymentsProviders::get_suggestion_order_map_id
Get the ID of the suggestion order map entry.
Метод класса: PaymentsProviders{}
Хуков нет.
Возвращает
Строку. The ID of the suggestion order map entry.
Использование
$PaymentsProviders = new PaymentsProviders(); $PaymentsProviders->get_suggestion_order_map_id( $suggestion_id ): string;
- $suggestion_id(строка) (обязательный)
- The ID of the suggestion.
Код PaymentsProviders::get_suggestion_order_map_id() PaymentsProviders::get suggestion order map id WC 10.9.4
public function get_suggestion_order_map_id( string $suggestion_id ): string {
return self::SUGGESTION_ORDERING_PREFIX . $suggestion_id;
}