• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/update/locationduplicatecleaner.php
  • Класс: BitrixCalendarUpdateLocationDuplicateCleaner
  • Вызов: LocationDuplicateCleaner::cleanDuplicates
private function cleanDuplicates(int $parentId, int $entryToLeave): void
{
	global $DB;
	$strSql = "delete from 
		b_calendar_event 
		where 
			CAL_TYPE = 'location' 
			and PARENT_ID = '".$parentId."' 
			and ID != '".$entryToLeave."' 
		limit 1000";

	$DB->Query($strSql);
}