...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_currency.php
- Класс: \CCrmCurrency
- Вызов: CCrmCurrency::GetCurrencyText
static function GetCurrencyText($currencyID) { $currencyText = '?'; if(Loader::includeModule('currency')) { $currencyFormat = self::GetCurrencyFormatString($currencyID); if (is_string($currencyFormat) && $currencyFormat !== '') { $str = CCurrencyLang::applyTemplate('', $currencyFormat); if (is_string($str)) { $str = trim($str); if ($str !== '') { $currencyText = $str; } } } } return $currencyText; }