forked from extern/egroupware
deleting of events
This commit is contained in:
parent
a460dde341
commit
416410f338
@ -355,7 +355,7 @@ class calendar_activesync implements activesync_plugin_write
|
|||||||
* @param $folderid
|
* @param $folderid
|
||||||
* @param $id
|
* @param $id
|
||||||
*
|
*
|
||||||
* @TODO check what is to be returned
|
* @return boolean true on success, false on error, diffbackend does NOT use the returnvalue
|
||||||
*
|
*
|
||||||
* @DESC After this call has succeeded, a call to
|
* @DESC After this call has succeeded, a call to
|
||||||
* GetMessageList() should no longer list the message. If it does, the message will be re-sent to the PDA
|
* GetMessageList() should no longer list the message. If it does, the message will be re-sent to the PDA
|
||||||
@ -364,8 +364,11 @@ class calendar_activesync implements activesync_plugin_write
|
|||||||
*/
|
*/
|
||||||
public function DeleteMessage($folderid, $id)
|
public function DeleteMessage($folderid, $id)
|
||||||
{
|
{
|
||||||
debugLog(__METHOD__."('$folderid', $id) NOT implemented!");
|
if (!isset($this->caledar)) $this->calendar = new calendar_boupdate();
|
||||||
return false;
|
|
||||||
|
$ret = $this->calendar->delete($id);
|
||||||
|
debugLog(__METHOD__."('$folderid', $id) delete($id) returned ".array2string($ret));
|
||||||
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user