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