コード例 #1
0
ファイル: Call.php プロジェクト: eggsurplus/SuiteCRM
    public function mark_deleted($id)
    {
        require_once("modules/Calendar/CalendarUtils.php");
        CalendarUtils::correctRecurrences($this, $id);

        parent::mark_deleted($id);
    }
コード例 #2
0
ファイル: Meeting.php プロジェクト: jgera/sugarcrm_dev
 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);
     }
 }