Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/currency/ |
Upload File : |
<?php require_once __DIR__ . '/autoload.php'; \CJSCore::RegisterExt( 'currency', [ 'js' => '/bitrix/js/currency/core_currency.js', 'rel' => [ 'core', 'main.polyfill.promise', 'currency.currency-core', ], ] ); \CJSCore::RegisterExt( 'core_money_editor', [ 'rel' => [ 'core', 'currency.money-editor', ], 'oninit' => function() { return [ 'lang_additional' => [ 'CURRENCY' => \Bitrix\Currency\Helpers\Editor::getListCurrency(), ], ]; }, ] ); \CJSCore::RegisterExt( 'core_uf_money', [ 'js' => '/bitrix/js/currency/core_uf_money.js', 'css' => '/bitrix/js/currency/css/core_uf_money.css', 'rel' => [ 'uf', 'core_money_editor', ], ] ); const CURRENCY_CACHE_DEFAULT_TIME = 10800; const CURRENCY_ISO_STANDART_URL = 'https://www.iso.org/iso/home/standards/currency_codes.htm'; /* * @deprecated deprecated since currency 14.0.0 * @see CCurrencyLang::CurrencyFormat() */ function CurrencyFormat($price, $currency) { return CCurrencyLang::CurrencyFormat($price, $currency, true); } /* * @deprecated deprecated since currency 14.0.0 * @see CCurrencyLang::CurrencyFormat() */ function CurrencyFormatNumber($price, $currency) { return CCurrencyLang::CurrencyFormat($price, $currency, false); }