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

	if (!empty($result['value']))
	{
		return array_map(function ($row){
			return new EventDto($row);
		}, $result['value']) ?? [];
	}

	return [];
}