示例#1
0
    public function mark_deleted($id)
    {
        require_once("modules/Calendar/CalendarUtils.php");
        CalendarUtils::correctRecurrences($this, $id);

        parent::mark_deleted($id);
    }
示例#2
0
 function mark_deleted($id)
 {
     require_once "modules/Calendar/CalendarUtils.php";
     CalendarUtils::correctRecurrences($this, $id);
     global $current_user;
     parent::mark_deleted($id);
     if ($this->update_vcal) {
         vCal::cache_sugar_vcal($current_user);
     }
 }