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