From 443704a12f420cc1ebee5a93333adb527dababd0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 16 May 2011 13:46:15 +0000 Subject: [PATCH] temporary disabling meeting requests from calendar and docu update --- calendar/inc/class.calendar_activesync.inc.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/calendar/inc/class.calendar_activesync.inc.php b/calendar/inc/class.calendar_activesync.inc.php index 786b64c810..41119a9fa9 100644 --- a/calendar/inc/class.calendar_activesync.inc.php +++ b/calendar/inc/class.calendar_activesync.inc.php @@ -219,6 +219,7 @@ class calendar_activesync implements activesync_plugin_write, activesync_plugin_ */ function GetMeetingRequests(array $not_uids, $cutoffdate=NULL) { +return array(); // temporary disabling meeting requests from calendar $folderid = $this->backend->createID('calendar', $GLOBALS['egw_info']['user']['account_id']); // users personal calendar $ret = $this->GetMessageList($folderid, $cutoffdate, $not_uids); @@ -812,12 +813,12 @@ class calendar_activesync implements activesync_plugin_write, activesync_plugin_ /** * Creates or modifies a folder * - * @param $id of the parent folder - * @param $oldid => if empty -> new folder created, else folder is to be renamed - * @param $displayname => new folder name (to be created, or to be renamed to) - * @param type => folder type, ignored in IMAP + * @param string $id of the parent folder + * @param string $oldid => if empty -> new folder created, else folder is to be renamed + * @param string $displayname => new folder name (to be created, or to be renamed to) + * @param string $type folder type, ignored in IMAP * - * @return stat | boolean false on error + * @return array|boolean stat array or false on error */ public function ChangeFolder($id, $oldid, $displayname, $type) { @@ -828,8 +829,8 @@ class calendar_activesync implements activesync_plugin_write, activesync_plugin_ /** * Deletes (really delete) a Folder * - * @param $parentid of the folder to delete - * @param $id of the folder to delete + * @param string $parentid of the folder to delete + * @param string $id of the folder to delete * * @return * @TODO check what is to be returned