• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/paysystem/service.php
  • Класс: BitrixSalePaySystemService
  • Вызов: Service::isPayable
public function isPayable()
{
	if ($this->handler instanceof IPayable)
		return true;

	if (method_exists($this->handler, 'isPayableCompatibility'))
		return $this->handler->isPayableCompatibility();

	return false;
}