/**
  * Convert from Kolab_Format to internal representation
  */
 private function _to_rcube_event($record)
 {
     $record['id'] = $record['uid'];
     $record['calendar'] = $this->id;
     return kolab_driver::to_rcube_event($record);
 }
예제 #2
0
 /**
  * Convert from Kolab_Format to internal representation
  */
 private function _to_rcube_event($record)
 {
     $record['id'] = $record['uid'];
     $record['calendar'] = $this->id;
     $record['links'] = $this->get_links($record['uid']);
     if ($this->get_namespace() == 'other') {
         $record['className'] = 'fc-event-ns-other';
         $record = kolab_driver::add_partstat_class($record, array('NEEDS-ACTION', 'DECLINED'), $this->get_owner());
     }
     return kolab_driver::to_rcube_event($record);
 }