Unset object properties which are mapped into other fields; define available alarm types

This commit is contained in:
Thomas Bruederli 2012-08-02 11:15:48 +02:00
parent 8c99dac9ef
commit 95e4b5e270

View file

@ -28,6 +28,7 @@ class tasklist_kolab_driver extends tasklist_driver
public $alarms = false; public $alarms = false;
public $attachments = true; public $attachments = true;
public $undelete = false; // task undelete action public $undelete = false; // task undelete action
public $alarm_types = array('DISPLAY');
private $rc; private $rc;
private $plugin; private $plugin;
@ -437,10 +438,10 @@ class tasklist_kolab_driver extends tasklist_driver
} }
} }
unset($task['attachments']); unset($object['attachments']);
} }
unset($object['tempid'], $object['raw']); unset($object['tempid'], $object['raw'], $object['list'], $object['flagged'], $object['tags']);
return $object; return $object;
} }