* * -------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; either version 2 of the License, or (at your * * option) any later version. * \**************************************************************************/ /* $Id$ */ if ($phpgw_info['flags']['included_classes']['calendar_'] == True) { return; } $phpgw_info['flags']['included_classes']['calendar_'] = True; class calendar_ extends calendar__ { function open($calendar='',$user='',$passwd='',$options='') { global $phpgw, $phpgw_info; if($user=='') { $user = $phpgw_info['user']['account_lid']; } elseif(is_int($user)) { $this->user = $phpgw->accounts->id2name($user); } elseif(is_string($user)) { $this->user = $user; } if($options != '') { $this->stream = mcal_open('{'.$phpgw_info['server']['icap_server'].'/'.$phpgw_info['server']['icap_type'].'}'.$calendar,$this->user,$passwd,$options); } else { $this->stream = mcal_open('{'.$phpgw_info['server']['icap_server'].'/'.$phpgw_info['server']['icap_type'].'}'.$calendar,$this->user,$passwd); } return $this->stream; } function popen($calendar='',$user='',$passwd='',$options='') { global $phpgw, $phpgw_info; if($user=='') { $this->user = $phpgw_info['user']['account_lid']; } elseif(is_int($user)) { $this->user = $phpgw->accounts->id2name($user); } elseif(is_string($user)) { $this->user = $user; } if($options != '') { $this->stream = mcal_popen('{'.$phpgw_info['server']['icap_server'].'/'.$phpgw_info['server']['icap_type'].'}'.$calendar,$this->user,$passwd,$options); } else { $this->stream = mcal_popen('{'.$phpgw_info['server']['icap_server'].'/'.$phpgw_info['server']['icap_type'].'}'.$calendar,$this->user,$passwd); } return $this->stream; } function reopen($calendar,$options='') { if($options != '') { $this->stream = mcal_reopen($calendar,$options); } else { $this->stream = mcal_reopen($calendar); } return $this->stream; } function close($mcal_stream,$options='') { if($options != '') { return mcal_close($mcal_stream,$options); } else { return mcal_close($mcal_stream); } } function create_calendar($stream,$calendar) { return mcal_create_calendar($stream,$calendar); } function rename_calendar($stream,$old_name,$new_name) { return mcal_rename_calendar($stream,$old_name,$new_name); } function delete_calendar($stream,$calendar) { return mcal_delete_calendar($stream,$calendar); } function fetch_event($mcal_stream,$event_id,$options='') { if(!isset($this->stream)) { return False; } $this->event = CreateObject('calendar.calendar_item'); if($options != '') { $this->event = mcal_fetch_event($mcal_stream,$event_id,$options); } else { $this->event = mcal_fetch_event($mcal_stream,$event_id); } // Need to load the $this->event variable with the $event structure from // the mcal_fetch_event() call // Use http://www.php.net/manual/en/function.mcal-fetch-event.php as the reference // This only needs legacy support return $this->event; } function list_events($mcal_stream,$startYear,$startMonth,$startDay,$endYear='',$endMonth='',$endYear='') { if($endYear != '' && $endMonth != '' && $endDay != '') { $events = mcal_list_events($mcal_stream,$startYear,$startMonth,$startDay,$endYear,$endMonth,$endYear); } else { $events = mcal_list_events($mcal_stream,$startYear,$startMonth,$startDay); } return $events; } function append_event($mcal_stream) { return mcal_append_event($mcal_stream); } function store_event($mcal_stream) { return mcal_store_event($mcal_stream); } function delete_event($mcal_stream,$event_id) { return mcal_delete_event($mcal_stream,$event_id); } function snooze($mcal_stream,$event_id) { return mcal_snooze($mcal_stream,$event_id); } function list_alarms($mcal_stream,$begin_year='',$begin_month='',$begin_day='',$end_year='',$end_month='',$end_day='') { if($end_day == '') { if($end_month == '') { if($end_year == '') { if($begin_day == '') { if($begin_month == '') { if($begin_year == '') { return mcal_list_alarms($mcal_stream); } else { return mcal_list_alarms($mcal_stream,$begin_year); } } else { return mcal_list_alarms($mcal_stream,$begin_year,$begin_month); } } else { return mcal_list_alarms($mcal_stream,$begin_year,$begin_month,$begin_day); } } else { return mcal_list_alarms($mcal_stream,$begin_year,$begin_month,$begin_day,$end_year); } } else { return mcal_list_alarms($mcal_stream,$begin_year,$begin_month,$begin_day,$end_year,$end_month); } } else { return mcal_list_alarms($mcal_stream,$begin_year,$begin_month,$begin_day,$end_year,$end_month,$end_day); } } function event_init($stream) { $this->event = CreateObject('calendar.calendar_item'); return mcal_event_init($stream); } function event_set_category($stream,$category='') { $this->event->category = $category; return mcal_event_set_category($stream,$this->event->category); } function event_set_title($stream,$title='') { $this->event->title = $title; return mcal_event_set_title($stream,$this->event->title); } function event_set_description($stream,$description='') { $this->event->description = $description; return mcal_event_set_description($stream,$this->event->description); } function event_set_start($stream,$year,$month,$day=0,$hour=0,$min=0,$sec=0) { // Legacy Support $this->event->year = $year; $this->event->month = $month; $this->event->day = $day; $this->event->hour = $hour; $this->event->minute = $min; $this->event->datetime = mktime($hour,$min,$sec,$month,$day,$year); // Legacy Support (New) $this->event->start->year = $year; $this->event->start->month = $month; $this->event->start->mday = $day; $this->event->start->hour = $hour; $this->event->start->min = $min; $this->event->start->sec = $sec; if($sec == 0) { if($min == 0) { if($hour == 0) { if($day == 0) { return mcal_event_set_start($stream,$year,$month); } else { return mcal_event_set_start($stream,$year,$month,$day); } } else { return mcal_event_set_start($stream,$year,$month,$day,$hour); } } else { return mcal_event_set_start($stream,$year,$month,$day,$hour,$min); } } else { return mcal_event_set_start($stream,$year,$month,$day,$hour,$min,$sec); } } function event_set_end($stream,$year,$month,$day=0,$hour=0,$min=0,$sec=0) { // Legacy Support $this->event->end_year = $year; $this->event->end_month = $month; $this->event->end_day = $day; $this->event->end_hour = $hour; $this->event->end_minute = $min; $this->event->end_second = $sec; $this->event->edatetime = mktime($hour,$min,$sec,$month,$day,$year); // Legacy Support (New) $this->event->end->year = $year; $this->event->end->month = $month; $this->event->end->mday = $day; $this->event->end->hour = $hour; $this->event->end->min = $min; $this->event->end->sec = $sec; $this->event->edatetime = mktime($hour,$min,$sec,$month,$day,$year); if($sec == 0) { if($min == 0) { if($hour == 0) { if($day == 0) { return mcal_event_set_end($stream,$year,$month); } else { return mcal_event_set_end($stream,$year,$month,$day); } } else { return mcal_event_set_end($stream,$year,$month,$day,$hour); } } else { return mcal_event_set_end($stream,$year,$month,$day,$hour,$min); } } else { return mcal_event_set_end($stream,$year,$month,$day,$hour,$min,$sec); } } function event_set_alarm($stream,$alarm) { return mcal_event_set_alarm ($stream,$alarm); } function event_set_class($stream,$class) { $this->event->public = $class; return mcal_event_set_class($stream,$class); } function is_leap_year($year) { return mcal_is_leap_year($year); } function days_in_month($month,$year) { return mcal_days_in_month($month,$year); } function date_valid($year,$month,$day) { return mcal_date_valid($year,$month,$day); } function time_valid($hour,$minutes,$seconds) { return mcal_time_valid($hour,$minutes,$seconds); } function day_of_week($year,$month,$day) { return mcal_day_of_week($year,$month,$day); } function day_of_year($year,$month,$day) { return mcal_day_of_year($year,$month,$day); } function date_compare($a_year,$a_month,$a_day,$b_year,$b_month,$b_day) { return mcal_date_compare($a_year,$a_month,$a_day,$b_year,$b_month,$b_day); } // The function definition doesn't look correct... // Need more information for this function function next_recurrence($stream,$weekstart,$next) { return mcal_next_recurrence($stream,$weekstart,$next); } function event_set_recur_none($stream) { return mcal_event_set_recur_none($stream); } function event_set_recur_daily($stream,$year,$month,$day,$interval) { return mcal_event_set_recur_daily($stream,$year,$month,$day,$interval); } function event_set_recur_weekly($stream,$year,$month,$day,$interval,$weekdays) { return mcal_event_set_recur_weekly($stream,$year,$month,$day,$interval,$weekdays); } function event_set_recur_monthly_mday($stream,$year,$month,$day,$interval) { return mcal_event_set_recur_monthly_mday($stream,$year,$month,$day,$interval); } function event_set_recur_monthly_wday($stream,$year,$month,$day,$interval) { return mcal_event_set_recur_monthly_wday($stream,$year,$month,$day,$interval); } function event_set_recur_yearly($stream,$year,$month,$day,$interval) { return mcal_event_set_recur_yearly($stream,$year,$month,$day,$interval); } function fetch_current_stream_event($stream) { return mcal_fetch_current_stream_event($stream); } function event_add_attribute($stream,$attribute,$value) { mcal_event_add_attribute($stream,$attribute,$value); } function expunge($stream) { return mcal_expunge($stream); } /**************** Local functions for ICAL based Calendar *****************/ function event_set_participants($stream,$participants) { $this->event->participants = Array(); reset($participants); $this->event->participants = $participants; return True; } function set_status($id,$owner,$status) { $status_code_short = Array( REJECTED => 'R', NO_RESPONSE => 'U', TENTATIVE => 'T', ACCEPTED => 'A' ); // $this->stream->query("UPDATE calendar_entry_user SET cal_status='".$status_code_short[$status]."' WHERE cal_id=".$id." AND cal_login=".$owner,__LINE__,__FILE__); return True; } }