• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_sync.php
  • Класс: CCalendarSync
  • Вызов: CCalendarSync::GetSyncLinks
static function GetSyncLinks($params = []): array
{
	$userId = $params['userId'];
	$type = $params['type'];
	$googleAuthLink = self::GetGoogleAuthLink($userId, $type);
	$office365AuthLink = self::GetOffice365AuthLink($userId, $type);

	return [
		'google' => $googleAuthLink,
		'office365' => $office365AuthLink,
	];
}