• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/mappers/section.php
  • Класс: BitrixCalendarCoreMappersSection
  • Вызов: Section::saveXmlId
private function saveXmlId(int $id, string $type): string
{
	$xmlId = md5($type. '_'. $id. '_'. Random::getString(8));

	SectionTable::update($id, [
		'XML_ID' => $xmlId
	]);

	return $xmlId;
}