• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/entities/syncsectionmap.php
  • Класс: BitrixCalendarSyncEntitiesSyncSectionMap
  • Вызов: SyncSectionMap::getNonLocalSections
public function getNonLocalSections(): SyncSectionMap
{
	return new self(array_filter($this->collection, function ($item) {
		/** @var SyncSection $item */
		return $item->getVendorName() !== Section::SECTION_TYPE_LOCAL;
	}));
}