Currency::getCurrencyList

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. Currency
  4. getCurrencyList
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/currency.php
  • Класс: Bitrix\Crm\Currency
  • Вызов: Currency::getCurrencyList
static function getCurrencyList(): array
{
	static $currencyList;

	if (is_null($currencyList))
	{
		$currencyList = \CCrmCurrencyHelper::PrepareListItems();
	}

	return $currencyList;
}

Добавить комментарий