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

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

	return false;
}