• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/rooms/util/cleanlocationeventsagent.php
  • Класс: BitrixCalendarRoomsUtilCleanLocationEventsAgent
  • Вызов: CleanLocationEventsAgent::cleanLocationEvents
private function cleanLocationEvents(): void
{
	if (!Loader::includeModule('calendar'))
	{
		return;
	}

	$toCleanLocationEvents = $this->getLocationEventsNeededToClean();

	if ($toCleanLocationEvents)
	{
		$this->cleanTables($toCleanLocationEvents);
		CCalendar::ClearCache(['event_list']);
	}
}