• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/section/sectionsyncdatacollection.php
  • Класс: BitrixCalendarCoreSectionSectionSyncDataCollection
  • Вызов: SectionSyncDataCollection::getByName
public function getByName($name): ?SectionSyncData
{
	foreach ($this->collection as $item)
	{
		if ($item->getConnectionType() === $name)
		{
			return $item;
		}
	}

	return null;
}