File manager - Edit - /home/c14075/dragmet-ural.ru/www/bitrix/modules/ammina.regions/lib/external/Morphos/CurrenciesHelper.php
Back
<?php namespace morphos; use InvalidArgumentException; trait CurrenciesHelper { /** * @param $currency * @return string * @throws InvalidArgumentException */ public static function canonizeCurrency($currency) { switch ($currency) { case Currency::DOLLAR: case '$': case 'usd': case 'dollar': return Currency::DOLLAR; case Currency::EURO: case '€': case 'euro': return Currency::EURO; case Currency::YEN: case '¥': return Currency::YEN; case Currency::POUND: case '£': return Currency::POUND; case Currency::FRANC: case 'Fr': return Currency::FRANC; case Currency::YUAN: case '元': return Currency::YUAN; case Currency::KRONA: case 'Kr': return Currency::KRONA; case Currency::PESO: return Currency::PESO; case Currency::WON: case '₩': return Currency::WON; case Currency::LIRA: case '₺': return Currency::LIRA; case Currency::RUBLE: case '₽': case 'ruble': return Currency::RUBLE; case Currency::RUPEE: case '₹': return Currency::RUPEE; case Currency::REAL: case 'R$': return Currency::REAL; case Currency::RAND: case 'R': return Currency::RAND; case Currency::HRYVNIA: case '₴': return Currency::HRYVNIA; default: throw new InvalidArgumentException('Invalid currency: '.$currency); } } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.18 |
proxy
|
phpinfo
|
Settings