• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/sharepoint.php
  • Класс: CAllIntranetSharepoint
  • Вызов: CAllIntranetSharepoint::Sync
static function Sync($arService, $row, &$arQueue)
{
	if (self::CheckService($arService))
	{
		if (method_exists($arService['HANDLER_CLASS'], 'Sync'))
			return call_user_func_array(array($arService['HANDLER_CLASS'], 'Sync'), array($arService, $row, &$arQueue));
		else //if (CModule::IncludeModule('webservice'))
			return self::_Sync($arService, $row, $arQueue);
	}

	return false;
}