• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/update/eventwithlocationupdate.php
  • Класс: BitrixCalendarUpdateEventWithLocationUpdate
  • Вызов: EventWithLocationUpdate::updateLocationValue
private function updateLocationValue(string $phraseLocation, int $id) : void
{
	global $DB;
	$DB->Query("
		UPDATE b_calendar_event
		SET LOCATION = '" . $phraseLocation . "'
		WHERE ID = ".$id.";"
	);
}