/* E.g. for payment methods, we need raw price converted by exchange rate */ public static function convertPriceDefaultToCurrentCurrency($price, $rate = 1) { $price *= $rate; return $price; }