• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/tradingplatform/ebay/helper.php
  • Класс: BitrixSaleTradingPlatformEbayHelper
  • Вызов: Helper::checkEnveronment
static function checkEnveronment()
{
	$result = new Result();

	if(!extension_loaded('ssh2'))
		$result->addError( new Error(Loc::getMessage("SALE_EBAY_HLP_CHECK_ERROR_SSH2")));

	if(!extension_loaded('SimpleXML'))
		$result->addError( new Error(Loc::getMessage("SALE_EBAY_HLP_CHECK_ERROR_SIMPLEXML")));

	return $result;
}