• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/vendorsyncservice.php
  • Класс: BitrixCalendarSyncOffice365VendorSyncService
  • Вызов: VendorSyncService::getEvents
public function getEvents(array $params): array
{
	$result = $this->apiService->getEventList($params);

	return array_map(function ($row){
		return new EventDto($row);
	}, $result);
}