• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/baseform.php
  • Класс: BitrixCatalogComponentBaseForm
  • Вызов: BaseForm::getCurrencyList
protected function getCurrencyList(): array
{
	static $currencyList = null;

	if ($currencyList === null)
	{
		$currencyList = [];

		foreach (CurrencyManager::getNameList() as $code => $name)
		{
			$currencyList[] = [
				'VALUE' => $code,
				'NAME' => htmlspecialcharsbx($name),
			];
		}
	}

	return $currencyList;
}