• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/builders/eventbuilderfromgetlist.php
  • Класс: BitrixCalendarCoreBuildersEventBuilderFromGetList
  • Вызов: EventBuilderFromGetList::getSection
protected function getSection(): Section
{
	if (
		isset($this->fields['SECTION_ID'])
		&& $sectionDM = SectionTable::getById($this->fields['SECTION_ID'])->fetchObject()
	)
	{
		return (new SectionBuilderFromDataManager($sectionDM))->build();
	}

	throw new BuilderException('it is impossible to find the section');
}