From 136865d48eaa2a9ce1ae7ee0a4a2e75fcc18307f Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 19 Mar 2011 12:53:31 +0000 Subject: [PATCH] empty settings method, calendar selection with follow later --- calendar/inc/class.calendar_activesync.inc.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_activesync.inc.php b/calendar/inc/class.calendar_activesync.inc.php index d0a98687b2..40b5aa0bd8 100644 --- a/calendar/inc/class.calendar_activesync.inc.php +++ b/calendar/inc/class.calendar_activesync.inc.php @@ -76,7 +76,7 @@ class calendar_activesync implements activesync_plugin_write foreach ($this->calendar->list_cals() as $label => $entry) { // uncomment next line to get only own calendar - if ($entry['grantor'] != $GLOBALS['egw_info']['user']['account_id']) continue; + //if ($entry['grantor'] != $GLOBALS['egw_info']['user']['account_id']) continue; $folderlist[] = $f = array( 'id' => $this->backend->createID('calendar',$entry['grantor']), 'mod' => $GLOBALS['egw']->accounts->id2name($entry['grantor'],'account_fullname'), @@ -1072,6 +1072,17 @@ END:VTIMEZONE return $packed; } + + /** + * Populates $settings for the preferences + * + * @param array|string $hook_data + * @return array + */ + function settings($hook_data) + { + return array(); + } } /**