• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/paysystem/servicehandler.php
  • Класс: BitrixSalePaySystemServiceHandler
  • Вызов: ServiceHandler::getRestrictionList
public function getRestrictionList(): RestrictionInfoCollection
{
	$collection = new RestrictionInfoCollection();

	$currencyList = $this->getCurrencyList();
	if (is_array($currencyList) && !empty($currencyList))
	{
		$currencyRestrictionContainer = new RestrictionInfo('Currency', ['CURRENCY' => $currencyList]);
		$collection->add($currencyRestrictionContainer);
	}

	return $collection;
}