• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/google/sectionconverter.php
  • Класс: BitrixCalendarSyncGoogleSectionConverter
  • Вызов: SectionConverter::convertForEdit
public function convertForEdit(): array
{
	$section = [];

	$section['summary'] = $this->section->getName();

	//todo move to level up
	if ($this->section->getExternalType() === CCalendarSect::EXTERNAL_TYPE_LOCAL)
	{
		IncludeModuleLangFile($_SERVER['DOCUMENT_ROOT'] . BX_ROOT . '/modules/calendar/classes/general/calendar.php');
		$section['summary'] = Loc::getMessage('EC_CALENDAR_BITRIX24_NAME') . " " . $section['summary'];
	}

	return $section;
}