- Модуль: intranet
- Путь к файлу: ~/bitrix/modules/intranet/classes/general/event_calendar.php
- Класс: CEventCalendar
- Вызов: CEventCalendar::DeleteCalendarEvent
static function DeleteCalendarEvent($calendarId, $eventId, $userId)
{
[$iblockId, $sectionId, $subSectionId, $ownerType, $ownerId] = $calendarId;
return CECEvent::Delete(array(
'id' => $eventId,
'iblockId' => $iblockId,
'ownerType' => mb_strtoupper($ownerType),
'ownerId' => $ownerId,
'userId' => $userId,
'bCheckPermissions' => false,
'bSyncDAV' => false
));
}