• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Terminal/PaymentSystemRepository.php
  • Класс: BitrixCrmMobileTerminalPaymentSystemRepository
  • Вызов: PaymentSystemRepository::getRequiredPaySystemList
static function getRequiredPaySystemList(): array
{
	if (self::isRuZone())
	{
		return [
			[
				'handler' => self::getYandexCheckoutHandlerCode(),
				'type' => YandexCheckoutHandler::MODE_SBP,
				'connected' => false,
				'id' => 0,
				'title' => null,
			],
			[
				'handler' => self::getYandexCheckoutHandlerCode(),
				'type' => YandexCheckoutHandler::MODE_SBERBANK_QR,
				'connected' => false,
				'id' => 0,
				'title' => null,
			],
		];
	}

	return [];
}