• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/vendorsyncservice.php
  • Класс: BitrixCalendarSyncOffice365VendorSyncService
  • Вызов: VendorSyncService::subscribeSection
public function subscribeSection(SectionConnection $link): ?array
{
	$channelId = $this->getChannelId($link);
	$result = $this->apiService->addSectionSubscription(
		$link->getVendorSectionId(),
		$channelId
	);

	if ($result)
	{
		$result['channelId'] = $channelId;
	}

	return $result;
}