• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/rest/ofdservice.php
  • Класс: BitrixSaleCashboxRestOfdService
  • Вызов: OfdService::getOfdHandlersMap
static function getOfdHandlersMap(): array
{
	static $result = [];

	if (empty($result))
	{
		$ofdHandlers = array_keys(SaleCashboxOfd::getHandlerList());
		/** @var SaleCashboxOfd $handler */
		foreach ($ofdHandlers as $handler)
		{
			$result[$handler::getCode()] = $handler;
		}
	}

	return $result;
}