• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/lib/integration/zoom/downloadagent.php
  • Класс: BitrixSocialservicesIntegrationZoomDownloadAgent
  • Вызов: DownloadAgent::scheduleDownload
static function scheduleDownload(int $activityId, int $recordingId, $siteId = SITE_ID)
{
	if ($activityId > 0 && $recordingId > 0)
	{
		$siteId = Application::getConnection()->getSqlHelper()->forSql($siteId);
		CAgent::AddAgent(
			__CLASS__."::run({$activityId}, {$recordingId}, '{$siteId}');",
			'socialservices',
			'N',
			3600,
			'',
			'Y',
			ConvertTimeStamp(time() + CTimeZone::GetOffset(), 'FULL')
		);
	}
}