Automattic\WooCommerce\Internal\Admin\Settings

PaymentsProviders::is_suggestion_order_map_idpublicWC 1.0

Check if the ID is a suggestion order map entry ID.

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

Хуков нет.

Возвращает

bool. True if the ID is a suggestion order map entry ID, false otherwise.

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

$PaymentsProviders = new PaymentsProviders();
$PaymentsProviders->is_suggestion_order_map_id( $id ): bool;
$id(строка) (обязательный)
The ID to check.

Код PaymentsProviders::is_suggestion_order_map_id() WC 11.1.0

public function is_suggestion_order_map_id( string $id ): bool {
	return 0 === strpos( $id, self::SUGGESTION_ORDERING_PREFIX );
}