• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar.php
  • Класс: CCalendar
  • Вызов: CCalendar::DeleteCalendarEvent
static function DeleteCalendarEvent($eventId, $userId, $oEvent = false)
{
	return CCalendarEvent::Delete(array(
		'id' => $eventId,
		'userId' => $userId,
		'bMarkDeleted' => true,
		'Event' => $oEvent,
	));
}