• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/googleapisync.php
  • Класс: BitrixCalendarSyncGoogleApiSync
  • Вызов: GoogleApiSync::getEvents
public function getEvents(array $calendarData): array
{
	$this->setColors();
	$this->nextSyncToken = $calendarData['SYNC_TOKEN'] ?? '';
	$this->nextPageToken = $calendarData['PAGE_TOKEN'] ?? '';

	if (!empty($response = $this->runSyncEvents($calendarData['GAPI_CALENDAR_ID'])))
	{
		return $this->processResponseReceivingEvents($response);
	}

	return [];
}