• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/helper.php
  • Класс: BitrixSaleDeliveryHelper
  • Вызов: Helper::getCurrenciesList
static function getCurrenciesList()
{
	static $currencies = null;

	if($currencies === null)
	{
		$currencies = array();

		if (!BitrixMainLoader::includeModule('currency'))
			throw new SystemException("Can't include module "Currency"!");

		$currencies = CurrencyCurrencyManager::getCurrencyList();
	}

	return $currencies;
}