1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
include.php
См. документацию.
1<?php
2
3require_once __DIR__ . '/autoload.php';
4
6 'currency',
7 [
8 'js' => '/bitrix/js/currency/core_currency.js',
9 'rel' => [
10 'core',
11 'main.polyfill.promise',
12 'currency.currency-core',
13 ],
14 ]
15);
16
18 'core_money_editor',
19 [
20 'rel' => [
21 'core',
22 'currency.money-editor',
23 ],
24 'oninit' => function()
25 {
26 return [
27 'lang_additional' => [
29 ],
30 ];
31 },
32 ]
33);
34
36 'core_uf_money',
37 [
38 'js' => '/bitrix/js/currency/core_uf_money.js',
39 'css' => '/bitrix/js/currency/css/core_uf_money.css',
40 'rel' => [
41 'uf',
42 'core_money_editor',
43 ],
44 ]
45);
46
48const CURRENCY_ISO_STANDART_URL = 'https://www.iso.org/iso/home/standards/currency_codes.htm';
49
50/*
51* @deprecated deprecated since currency 14.0.0
52* @see CCurrencyLang::CurrencyFormat()
53*/
54function CurrencyFormat($price, $currency)
55{
56 return CCurrencyLang::CurrencyFormat($price, $currency, true);
57}
58
59/*
60* @deprecated deprecated since currency 14.0.0
61* @see CCurrencyLang::CurrencyFormat()
62*/
64{
65 return CCurrencyLang::CurrencyFormat($price, $currency, false);
66}
static getListCurrency()
Определения editor.php:18
static RegisterExt($name, $arPaths)
Определения jscore.php:28
const CURRENCY_CACHE_DEFAULT_TIME
Определения include.php:47
const CURRENCY_ISO_STANDART_URL
Определения include.php:48
CurrencyFormat($price, $currency)
Определения include.php:54
CurrencyFormatNumber($price, $currency)
Определения include.php:63
$currency
Определения template.php:266