• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/rest_lead.php
  • Класс: \CCRMLeadRest
  • Вызов: CCRMLeadRest::_GetCurrencyList
static function _GetCurrencyList()
{
	$ar = CCrmCurrencyHelper::PrepareListItems();
	$list = array();

	foreach ($ar as $key => $value)
	{
		$list[] = array('ID' => $key, 'NAME' => $value);
	}

	return $list;
}