mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
2854 lines
88 KiB
PHP
Executable File
2854 lines
88 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* http://www.phpgroupware.org *
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
* http://www.radix.net/~cknudsen *
|
|
* Modified by Mark Peters <skeeter@phpgroupware.org> *
|
|
* -------------------------------------------- *
|
|
* 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$ */
|
|
|
|
class uicalendar
|
|
{
|
|
var $template;
|
|
var $template_dir;
|
|
|
|
var $bo;
|
|
var $cat;
|
|
|
|
var $holidays;
|
|
var $holiday_color;
|
|
|
|
var $debug = False;
|
|
|
|
var $cat_id;
|
|
|
|
var $public_functions = array(
|
|
'mini_calendar' => True,
|
|
'index' => True,
|
|
'month' => True,
|
|
'week' => True,
|
|
'year' => True,
|
|
'view' => True,
|
|
'edit' => True,
|
|
'add' => True,
|
|
'delete' => True,
|
|
'preferences' => True,
|
|
'day' => True,
|
|
'edit_status' => True,
|
|
'set_action' => True,
|
|
'planner' => True,
|
|
'matrixselect' => True,
|
|
'viewmatrix' => True,
|
|
'search' => True,
|
|
'header' => True,
|
|
'footer' => True
|
|
);
|
|
|
|
function uicalendar()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$phpgw->browser = CreateObject('phpgwapi.browser');
|
|
|
|
$this->bo = CreateObject('calendar.bocalendar',1);
|
|
|
|
if($this->debug)
|
|
{
|
|
echo "BO Owner : ".$this->bo->owner."<br>\n";
|
|
}
|
|
|
|
|
|
$this->template = $phpgw->template;
|
|
$this->template_dir = $phpgw->common->get_tpl_dir('calendar');
|
|
$this->cat = CreateObject('phpgwapi.categories');
|
|
|
|
$this->holiday_color = (substr($phpgw_info['theme']['bg07'],0,1)=='#'?'':'#').$phpgw_info['theme']['bg07'];
|
|
|
|
$this->cat_id = $this->bo->cat_id;
|
|
|
|
if($this->bo->use_session)
|
|
{
|
|
$this->save_sessiondata();
|
|
}
|
|
|
|
if($this->debug)
|
|
{
|
|
$this->_debug_sqsof();
|
|
}
|
|
}
|
|
|
|
/* Public functions */
|
|
|
|
function mini_calendar($day,$month,$year,$link='',$buttons="none",$outside_month=True)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->read_holidays();
|
|
|
|
$date = $this->bo->datetime->makegmttime(0,0,0,$month,$day,$year);
|
|
$month_ago = intval(date('Ymd',mktime(0,0,0,$month - 1,$day,$year)));
|
|
$month_ahead = intval(date('Ymd',mktime(0,0,0,$month + 1,$day,$year)));
|
|
$monthstart = intval(date('Ymd',mktime(0,0,0,$month,1,$year)));
|
|
$monthend = intval(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
|
|
|
|
$weekstarttime = $this->bo->datetime->get_weekday_start($year,$month,1);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('remove');
|
|
|
|
$templates = Array(
|
|
'mini_calendar' => 'mini_cal.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
$p->set_block('mini_calendar','mini_cal','mini_cal');
|
|
$p->set_block('mini_calendar','mini_week','mini_week');
|
|
$p->set_block('mini_calendar','mini_day','mini_day');
|
|
|
|
if($this->bo->printer_friendly == False)
|
|
{
|
|
$month = '<a href="' . $this->page('month','&month='.$phpgw->common->show_date($date['raw'],'m').'&year='.$phpgw->common->show_date($date['raw'],'Y')). '" class="minicalendar">' . lang($phpgw->common->show_date($date['raw'],'F')).' '.$phpgw->common->show_date($date['raw'],'Y').'</a>';
|
|
}
|
|
else
|
|
{
|
|
$month = lang($phpgw->common->show_date($date['raw'],'F')).' '.$phpgw->common->show_date($date['raw'],'Y');
|
|
}
|
|
|
|
$var = Array(
|
|
'cal_img_root' => $phpgw->common->image('calendar','mini-calendar-bar.gif'),
|
|
'bgcolor' => $phpgw_info['theme']['bg_color'],
|
|
'bgcolor1' => $phpgw_info['theme']['bg_color'],
|
|
'month' => $month,
|
|
'bgcolor2' => $phpgw_info['theme']['cal_dayview'],
|
|
'holiday_color' => $this->holiday_color
|
|
);
|
|
|
|
$p->set_var($var);
|
|
|
|
switch(strtolower($buttons))
|
|
{
|
|
case 'right':
|
|
$var = Array(
|
|
'nextmonth' => '<a href="'.$this->page('month','&date='.$month_ahead).'"><img src="'.$phpgw->common->image('phpgwapi','right.gif').'" border="0"></a>'
|
|
);
|
|
break;
|
|
case 'left':
|
|
$var = Array(
|
|
'prevmonth' => '<a href="'.$this->page('month','&date='.$month_ago).'"><img src="'.$phpgw->common->image('phpgwapi','left.gif').'" border="0"></a>'
|
|
);
|
|
break;
|
|
case 'both':
|
|
$var = Array(
|
|
'prevmonth' => '<a href="'.$this->page('month','&date='.$month_ago).'"><img src="'.$phpgw->common->image('phpgwapi','left.gif').'" border="0"></a>',
|
|
'nextmonth' => '<a href="'.$this->page('month','&date='.$month_ahead).'"><img src="'.$phpgw->common->image('phpgwapi','right.gif').'" border="0"></a>'
|
|
);
|
|
break;
|
|
case 'none':
|
|
default:
|
|
$var = Array(
|
|
'prevmonth' => '',
|
|
'nextmonth' => ''
|
|
);
|
|
break;
|
|
}
|
|
$p->set_var($var);
|
|
|
|
for($i=0;$i<7;$i++)
|
|
{
|
|
$p->set_var('dayname','<b>' . substr(lang($this->bo->datetime->days[$i]),0,2) . '</b>');
|
|
$p->parse('daynames','mini_day',True);
|
|
}
|
|
$today = date('Ymd',time());
|
|
unset($date);
|
|
for($i=$weekstarttime;date('Ymd',$i)<=$monthend;$i += (24 * 3600 * 7))
|
|
{
|
|
unset($var);
|
|
$daily = $this->bo->set_week_array($i,$cellcolor,$weekly);
|
|
@reset($daily);
|
|
while(list($date,$day_params) = each($daily))
|
|
{
|
|
if($this->debug)
|
|
{
|
|
echo 'Mini-Cal Date : '.$date."<br>\n";
|
|
}
|
|
$year = intval(substr($date,0,4));
|
|
$month = intval(substr($date,4,2));
|
|
$day = intval(substr($date,6,2));
|
|
$str = '';
|
|
if(($date >= $monthstart && $date <= $monthend) || $outside_month == True)
|
|
{
|
|
if(!$this->bo->printer_friendly)
|
|
{
|
|
$str = '<a href="'.$this->page($link,'&date='.$date).'" class="'.$day_params['class'].'">'.$day.'</a>';
|
|
}
|
|
else
|
|
{
|
|
$str = $day;
|
|
}
|
|
|
|
}
|
|
$var[] = Array(
|
|
'day_image' => $day_params['day_image'],
|
|
'dayname' => $str
|
|
);
|
|
}
|
|
for($l=0;$l<count($var);$l++)
|
|
{
|
|
$this->output_template_array($p,'monthweek_day','mini_day',$var[$l]);
|
|
}
|
|
$p->parse('display_monthweek','mini_week',True);
|
|
$p->set_var('dayname','');
|
|
$p->set_var('monthweek_day','');
|
|
}
|
|
|
|
$return_value = $p->fp('out','mini_cal');
|
|
unset($p);
|
|
return $return_value;
|
|
}
|
|
|
|
function index($params='')
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
Header('Location: '. $this->page('',$params));
|
|
}
|
|
|
|
function month()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->read_holidays();
|
|
|
|
$m = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
|
|
|
|
if (!$this->bo->printer_friendly)
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
unset($phpgw_info['flags']['noappheader']);
|
|
unset($phpgw_info['flags']['noappfooter']);
|
|
$phpgw->common->phpgw_header();
|
|
$printer = '';
|
|
$param = '&year='.$this->bo->year.'&month='.$this->bo->month.'&friendly=1';
|
|
$print = '<a href="'.$this->page('month'.$param)."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
|
|
$minical_prev = $this->mini_calendar(1,$this->bo->month - 1,$this->bo->year,'day');
|
|
$minical_next = $this->mini_calendar(1,$this->bo->month + 1,$this->bo->year,'day');
|
|
}
|
|
else
|
|
{
|
|
$printer = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
|
|
$print = '';
|
|
if(@$this->bo->prefs['calendar']['display_minicals'])
|
|
{
|
|
$minical_prev = $this->mini_calendar(1,$this->bo->month - 1,$this->bo->year,'day');
|
|
$minical_next = $this->mini_calendar(1,$this->bo->month + 1,$this->bo->year,'day');
|
|
}
|
|
else
|
|
{
|
|
$minical_prev = '';
|
|
$minical_next = '';
|
|
}
|
|
$phpgw_info['flags']['nofooter'] = True;
|
|
}
|
|
|
|
$var = Array(
|
|
'printer_friendly' => $printer,
|
|
'bg_text' => $phpgw_info['theme']['bg_text'],
|
|
'small_calendar_prev' => $minical_prev,
|
|
'month_identifier' => lang(strftime("%B",$m)).' '.$this->bo->year,
|
|
'username' => $phpgw->common->grab_owner_name($this->bo->owner),
|
|
'small_calendar_next' => $minical_next,
|
|
'large_month' => $this->display_month($this->bo->month,$this->bo->year,True,$this->bo->owner),
|
|
'print' => $print
|
|
);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('remove');
|
|
$templates = Array(
|
|
'index_t' => 'index.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
$p->set_var($var);
|
|
$p->pparse('out','index_t');
|
|
}
|
|
|
|
function week()
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->read_holidays();
|
|
|
|
$next = $this->bo->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day + 7,$this->bo->year);
|
|
$prev = $this->bo->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day - 7,$this->bo->year);
|
|
|
|
if (!$this->bo->printer_friendly)
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
$printer = '';
|
|
$prev_week_link = '<a href="'.$this->page('week','&date='.$prev['full']).'"><<</a>';
|
|
$next_week_link = '<a href="'.$this->page('week','&date='.$next['full']).'">>></a>';
|
|
$print = '<a href="'.$this->page('week','&friendly=1')."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
|
|
$minical_this = $this->mini_calendar($this->bo->day,$this->bo->month,$this->bo->year,'day','none',False);
|
|
$minical_prev = $this->mini_calendar(1,$this->bo->month - 1,$this->bo->year,'day','left',False);
|
|
$minical_next = $this->mini_calendar(1,$this->bo->month + 1,$this->bo->year,'day','right',False);
|
|
}
|
|
else
|
|
{
|
|
$printer = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
|
|
$prev_week_link = '<<';
|
|
$next_week_link = '>>';
|
|
$print = '';
|
|
if(@$this->bo->prefs['calendar']['display_minicals'])
|
|
{
|
|
$minical_this = $this->mini_calendar($this->bo->day,$this->bo->month,$this->bo->year,'day');
|
|
$minical_prev = $this->mini_calendar(1,$this->bo->month - 1,$this->bo->year,'day');
|
|
$minical_next = $this->mini_calendar(1,$this->bo->month + 1,$this->bo->year,'day');
|
|
}
|
|
else
|
|
{
|
|
$minical_this = '';
|
|
$minical_prev = '';
|
|
$minical_next = '';
|
|
}
|
|
$phpgw_info['flags']['nofooter'] = True;
|
|
}
|
|
|
|
$var = Array(
|
|
'printer_friendly' => $printer,
|
|
'bg_text' => $phpgw_info['themem']['bg_text'],
|
|
'small_calendar_prev' => $minical_prev,
|
|
'prev_week_link' => $prev_week_link,
|
|
'small_calendar_this' => $minical_this,
|
|
'week_identifier' => $this->bo->get_week_label(),
|
|
'next_week_link' => $next_week_link,
|
|
'username' => $phpgw->common->grab_owner_name($this->bo->owner),
|
|
'small_calendar_next' => $minical_next,
|
|
'week_display' => $this->display_weekly($this->bo->day,$this->bo->month,$this->bo->year,true,$this->bo->owner),
|
|
'print' => $print
|
|
);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$templates = Array(
|
|
'week_t' => 'week.tpl'
|
|
);
|
|
|
|
$p->set_file($templates);
|
|
$p->set_var($var);
|
|
$p->pparse('out','week_t');
|
|
}
|
|
|
|
function year()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if(!$this->bo->printer_friendly)
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
$print = '';
|
|
$left_link = '<a href="'.$this->page('year','&year='.($this->bo->year - 1)).'"><<</a>';
|
|
$right_link = '<a href="'.$this->page('year','&year='.($this->bo->year + 1)).'">>></a>';
|
|
$link = 'day.php';
|
|
$printer = '<a href="'.$this->page('year','&friendly=1').'" target="cal_printer_friendly" onMouseOver="window.status = '."'".lang('Generate printer-friendly version')."'".'">['.lang('Printer Friendly').']</a>';
|
|
}
|
|
else
|
|
{
|
|
$print = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
|
|
$left_link = '';
|
|
$right_link = '';
|
|
$link = '';
|
|
$printer = '';
|
|
$phpgw_info['flags']['nofooter'] = True;
|
|
}
|
|
|
|
$var = Array(
|
|
'print' => $print,
|
|
'left_link' => $left_link,
|
|
'font' => $phpgw_info['theme']['font'],
|
|
'year_text' => $this->bo->year,
|
|
'right_link'=> $right_link,
|
|
'printer_friendly'=> $printer
|
|
);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$templates = Array(
|
|
'year_t' => 'year.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
$p->set_block('year_t','year','year');
|
|
$p->set_block('year_t','month','month');
|
|
$p->set_block('year_t','month_sep','month_sep');
|
|
$p->set_var($var);
|
|
|
|
for($i=1;$i<=12;$i++)
|
|
{
|
|
$p->set_var('mini_month',$this->mini_calendar(1,$i,$this->bo->year,$link,'none',False));
|
|
$p->parse('row','month',True);
|
|
$p->set_var('mini_month','');
|
|
if(($i % 3) == 0)
|
|
{
|
|
$p->parse('row','month_sep',True);
|
|
}
|
|
}
|
|
$p->pparse('out','year_t');
|
|
}
|
|
|
|
function view($vcal_id=0)
|
|
{
|
|
global $phpgw,$phpgw_info,$cal_id,$submit,$referer;
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
|
|
echo '<center>';
|
|
|
|
if(!@$cal_id && $vcal_id)
|
|
{
|
|
$cal_id = $vcal_id;
|
|
}
|
|
|
|
|
|
// First, make sure they have permission to this entry
|
|
if ($cal_id < 1)
|
|
{
|
|
echo lang('Invalid entry id.').'</center>';
|
|
return;
|
|
}
|
|
|
|
if(!$this->bo->check_perms(PHPGW_ACL_READ))
|
|
{
|
|
echo lang('You do not have permission to read this record!').'</center>';
|
|
return;
|
|
}
|
|
|
|
$event = $this->bo->read_entry($cal_id);
|
|
|
|
if(!isset($event->id))
|
|
{
|
|
echo lang("Sorry, this event does not exist").'.'.'</center>';
|
|
return;
|
|
}
|
|
|
|
echo $this->view_event($event);
|
|
|
|
if ($this->bo->owner == $event->owner && $this->bo->check_perms(PHPGW_ACL_EDIT) == True)
|
|
{
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$templates = Array(
|
|
'form_button' => 'form_button_script.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
|
|
$var = Array(
|
|
'action_url_button' => $this->page('edit','&cal_id='.$cal_id),
|
|
'action_text_button' => lang('Edit'),
|
|
'action_confirm_button' => '',
|
|
'action_extra_field' => ''
|
|
);
|
|
$p->set_var($var);
|
|
echo $p->fp('out','form_button');
|
|
}
|
|
|
|
if ($this->bo->owner == $event->owner && $this->bo->check_perms(PHPGW_ACL_DELETE) == True)
|
|
{
|
|
if(!is_object($p))
|
|
{
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$templates = Array(
|
|
'form_button' => 'form_button_script.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
}
|
|
|
|
$var = Array(
|
|
'action_url_button' => $this->page('delete','&cal_id='.$cal_id),
|
|
'action_text_button' => lang('Delete'),
|
|
'action_confirm_button' => "onClick=\"return confirm('".lang("Are you sure\\nyou want to\\ndelete this entry ?\\n\\nThis will delete\\nthis entry for all users.")."')\"",
|
|
'action_extra_field' => ''
|
|
);
|
|
$p->set_var($var);
|
|
echo $p->fp('out','form_button');
|
|
}
|
|
echo '</center>';
|
|
}
|
|
|
|
function edit($cd=0,$readsess=0)
|
|
{
|
|
global $phpgw, $phpgw_info, $cal_id, $hour, $minute;
|
|
|
|
if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
|
|
{
|
|
$this->no_edit();
|
|
}
|
|
|
|
if(@$readsess)
|
|
{
|
|
$event = $this->bo->restore_from_appsession;
|
|
$can_edit = True;
|
|
}
|
|
elseif($cal_id)
|
|
{
|
|
$event = $this->bo->read_entry(intval($cal_id));
|
|
|
|
$can_edit = $this->bo->can_user_edit($event);
|
|
|
|
if(!$can_edit)
|
|
{
|
|
$this->view($cal_id);
|
|
}
|
|
}
|
|
$this->edit_form($event);
|
|
}
|
|
|
|
function add($cd,$readsess)
|
|
{
|
|
global $phpgw, $phpgw_info, $cal_id, $hour, $minute;
|
|
|
|
if(!$this->bo->check_perms(PHPGW_ACL_ADD))
|
|
{
|
|
$this->index();
|
|
}
|
|
|
|
if(isset($readsess))
|
|
{
|
|
$event = $this->bo->restore_from_appsession;
|
|
if($event->owner == 0)
|
|
{
|
|
$this->bo->add_attribute('owner',$this->bo->owner);
|
|
}
|
|
$can_edit = True;
|
|
}
|
|
else
|
|
{
|
|
$this->bo->event_init();
|
|
$this->bo->add_attribute('id',0);
|
|
|
|
$can_edit = True;
|
|
|
|
$thishour = (isset($hour)?(int)$hour:0);
|
|
$thisminute = (isset($minute)?(int)$minute:0);
|
|
$this->bo->set_start($this->bo->year,$this->bo->month,$this->bo->day,$thishour,$thisminute,0);
|
|
$this->bo->set_end($this->bo->year,$this->bo->month,$this->bo->day,$thishour,$thisminute,0);
|
|
$this->bo->set_title('');
|
|
$this->bo->set_description('');
|
|
$this->bo->add_attribute('priority',2);
|
|
if(@$this->bo->prefs['calendar']['default_private'])
|
|
{
|
|
$this->bo->set_class(False);
|
|
}
|
|
else
|
|
{
|
|
$this->bo->set_class(True);
|
|
}
|
|
$this->bo->add_attribute('participants['.$this->bo->owner.']','A');
|
|
$this->bo->set_recur_none();
|
|
$event = $this->bo->get_cached_event();
|
|
}
|
|
$this->edit_form($event);
|
|
}
|
|
|
|
function delete()
|
|
{
|
|
global $cal_id;
|
|
$event = $this->bo->read_entry(intval($cal_id));
|
|
if(($cal_id > 0) && ($event->owner == $this->bo->owner) && ($this->bo->check_perms(PHPGW_ACL_DELETE) == True))
|
|
{
|
|
$date = sprintf("%04d%02d%02d",$event->start->year,$event->start->month,$event->start->mday);
|
|
|
|
$cd = $this->bo->delete_entry(intval($cal_id));
|
|
$this->bo->expunge();
|
|
}
|
|
else
|
|
{
|
|
$date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day);
|
|
$cd = '';
|
|
}
|
|
Header('Location: '.$this->page('','&date'.$date.($cd?'&cd='.$cd:'')));
|
|
}
|
|
|
|
function preferences()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw_info['flags']['noappheader'] = True;
|
|
$phpgw_info['flags']['noappfooter'] = True;
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'pref' =>'pref.tpl',
|
|
'pref_colspan' =>'pref_colspan.tpl',
|
|
'pref_list' =>'pref_list.tpl'
|
|
)
|
|
);
|
|
|
|
$var = Array(
|
|
'title' => lang('Calendar preferences'),
|
|
'action_url' => $phpgw->link('/index.php','menuaction=calendar.bocalendar.preferences'),
|
|
'bg_color ' => $phpgw_info['theme']['th_bg'],
|
|
'submit_lang' => lang('submit'),
|
|
'text' => ' '
|
|
);
|
|
|
|
$this->output_template_array($p,'row','pref_colspan',$var);
|
|
|
|
// if ($totalerrors)
|
|
// {
|
|
// echo '<p><center>' . $phpgw->common->error_list($errors) . '</center>';
|
|
// }
|
|
|
|
$this->display_item($p,lang('show day view on main screen'),'<input type="checkbox" name="prefs[mainscreen_showevents]" value="True"'.(@$this->bo->prefs['calendar']['mainscreen_showevents']?' checked':'').'>');
|
|
|
|
$days = Array(
|
|
'Monday',
|
|
'Sunday',
|
|
'Saturday'
|
|
);
|
|
$str = '';
|
|
for($i=0;$i<count($days);$i++)
|
|
{
|
|
$str .= '<option value="'.$days[$i].'"'.($this->bo->prefs['calendar']['weekdaystarts']==$days[$i]?' selected':'').'>'.lang($days[$i]).'</option>'."\n";
|
|
}
|
|
$this->display_item($p,lang('weekday starts on'),'<select name="prefs[weekdaystarts]">'."\n".$str.'</select>'."\n");
|
|
|
|
$str = '';
|
|
for ($i=0; $i<24; $i++)
|
|
{
|
|
$str .= '<option value="'.$i.'"'.($this->bo->prefs['calendar']['workdaystarts']==$i?' selected':'').'>'.$phpgw->common->formattime($i,'00').'</option>'."\n";
|
|
}
|
|
$this->display_item($p,lang('work day starts on'),'<select name="prefs[workdaystarts]">'."\n".$str.'</select>'."\n");
|
|
|
|
$str = '';
|
|
for ($i=0; $i<24; $i++)
|
|
{
|
|
$str .= '<option value="'.$i.'"'.($this->bo->prefs['calendar']['workdayends']==$i?' selected':'').'>'.$phpgw->common->formattime($i,'00').'</option>';
|
|
}
|
|
$this->display_item($p,lang('work day ends on'),'<select name="prefs[workdayends]">'."\n".$str.'</select>'."\n");
|
|
|
|
if(strpos('.',$this->bo->prefs['calendar']['defaultcalendar']))
|
|
{
|
|
$temp = explode('.',$this->bo->prefs['calendar']['defaultcalendar']);
|
|
$this->bo->prefs['calendar']['defaultcalendar'] = $temp[0];
|
|
}
|
|
$selected[$this->bo->prefs['calendar']['defaultcalendar']] = ' selected';
|
|
if (!isset($this->bo->prefs['calendar']['defaultcalendar']))
|
|
{
|
|
$selected['month'] = ' selected';
|
|
}
|
|
$str = '<select name="prefs[defaultcalendar]">'
|
|
. '<option value="year"'.$selected['year'].'>'.lang('Yearly').'</option>'
|
|
. '<option value="month"'.$selected['month'].'>'.lang('Monthly').'</option>'
|
|
. '<option value="week"'.$selected['week'].'>'.lang('Weekly').'</option>'
|
|
. '<option value="day"'.$selected['day'].'>'.lang('Daily').'</option>'
|
|
. '</select>';
|
|
$this->display_item($p,lang('default calendar view'),$str);
|
|
|
|
$selected = array();
|
|
$selected[$this->bo->prefs['calendar']['defaultfilter']] = ' selected';
|
|
if (!isset($this->bo->prefs['calendar']['defaultfilter']) || $this->bo->prefs['calendar']['defaultfilter'] == 'private')
|
|
{
|
|
$selected['private'] = ' selected';
|
|
}
|
|
$str = '<select name="prefs[defaultfilter]">'
|
|
. '<option value="all"'.$selected['all'].'>'.lang('all').'</option>'
|
|
. '<option value="private"'.$selected['private'].'>'.lang('private only').'</option>'
|
|
// . '<option value="public"'.$selected['public'].'>'.lang('global public only').'</option>'
|
|
// . '<option value="group"'.$selected['group'].'>'.lang('group public only').'</option>'
|
|
// . '<option value="private+public"'.$selected['private+public'].'>'.lang('private and global public').'</option>'
|
|
// . '<option value="private+group"'.$selected['private+group'].'>'.lang('private and group public').'</option>'
|
|
// . '<option value="public+group"'.$selected['public+group'].'>'.lang('global public and group public').'</option>'
|
|
. '</select>';
|
|
$this->display_item($p,lang('Default calendar filter'),$str);
|
|
|
|
$var = Array(
|
|
5 => '5',
|
|
10 => '10',
|
|
15 => '15',
|
|
20 => '20',
|
|
30 => '30',
|
|
45 => '45',
|
|
60 => '60'
|
|
);
|
|
|
|
$str = '';
|
|
while(list($key,$value) = each($var))
|
|
{
|
|
$str .= '<option value="'.$key.'"'.(intval($this->bo->prefs['calendar']['interval'])==$key?' selected':'').'>'.$value.'</option>'."\n";
|
|
}
|
|
$this->display_item($p,lang('Display interval in Day View'),'<select name="prefs[interval]">'."\n".$str.'</select>'."\n");
|
|
|
|
$this->display_item($p,lang('Send/receive updates via email'),'<input type="checkbox" name="prefs[send_updates]" value="True"'.(@$this->bo->prefs['calendar']['send_updates']?' checked':'').'>'."\n");
|
|
|
|
$this->display_item($p,lang('Display status of events'),'<input type="checkbox" name="prefs[display_status]" value="True"'.(@$this->bo->prefs['calendar']['display_status']?' checked':'').'>'."\n");
|
|
|
|
$this->display_item($p,lang('When creating new events default set to private'),'<input type="checkbox" name="prefs[default_private]" value="True"'.(@$this->bo->prefs['calendar']['default_private']?' checked':'').'>'."\n");
|
|
|
|
$this->display_item($p,lang('Display mini calendars when printing'),'<input type="checkbox" name="prefs[display_minicals]" value="True"'.(@$this->bo->prefs['calendar']['display_minicals']?' checked':'').'>'."\n");
|
|
|
|
$this->display_item($p,lang('Print calendars in black & white'),'<input type="checkbox" name="prefs[print_black_white]" value="True"'.(@$this->bo->prefs['calendar']['print_black_white']?' checked':'').'>'."\n");
|
|
|
|
$p->pparse('out','pref');
|
|
}
|
|
|
|
function day()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->read_holidays();
|
|
|
|
if (!$this->bo->printer_friendly)
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
$printer = '';
|
|
$param = '&year='.$this->bo->year.'&month='.$this->bo->month.'&day='.$this->bo->day.'&friendly=1';
|
|
$print = '<a href="'.$this->page('day'.$param)."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
|
|
$minical = $this->mini_calendar($this->bo->day,$this->bo->month,$this->bo->year,'day');
|
|
}
|
|
else
|
|
{
|
|
$phpgw_info['flags']['nofooter'] = True;
|
|
$printer = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
|
|
$print = '';
|
|
if($this->bo->prefs['calendar']['display_minicals'] == 'Y' || $this->bo->prefs['calendar']['display_minicals'])
|
|
{
|
|
$minical = $this->mini_calendar($this->bo->day,$this->bo->month,$this->bo->year,'day');
|
|
}
|
|
else
|
|
{
|
|
$minical = '';
|
|
}
|
|
}
|
|
|
|
$now = $this->bo->datetime->makegmttime(0, 0, 0, $this->bo->month, $this->bo->day, $this->bo->year);
|
|
$now['raw'] += $this->bo->datetime->tz_offset;
|
|
$m = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'day_t' => 'day.tpl'
|
|
)
|
|
);
|
|
|
|
$var = Array(
|
|
'printer_friendly' => $printer,
|
|
'bg_text' => $phpgw_info['themem']['bg_text'],
|
|
'daily_events' => $this->print_day($this->bo->year,$this->bo->month,$this->bo->day),
|
|
'small_calendar' => $minical,
|
|
'date' => lang(date('F',$m)).' '.sprintf("%02d",$this->bo->day).', '.$this->bo->year,
|
|
'username' => $phpgw->common->grab_owner_name($owner),
|
|
'print' => $print
|
|
);
|
|
|
|
$p->set_var($var);
|
|
|
|
$p->pparse('out','day_t');
|
|
}
|
|
|
|
function edit_status()
|
|
{
|
|
global $phpgw, $phpgw_info, $cal_id;
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw_info['flags']['noappheader'] = True;
|
|
$phpgw_info['flags']['noappfooter'] = True;
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$event = $this->bo->read_entry($cal_id);
|
|
|
|
reset($event->participants);
|
|
|
|
if(!$event->participants[$this->bo->owner])
|
|
{
|
|
echo '<center>The user '.$phpgw->common->grab_owner_name($this->bo->owner).' is not participating in this event!</center>';
|
|
return;
|
|
}
|
|
|
|
if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
|
|
{
|
|
$this->no_edit();
|
|
return;
|
|
}
|
|
|
|
$freetime = $this->bo->datetime->localdates(mktime(0,0,0,$event->start->month,$event->start->mday,$event->start->year) - $this->bo->datetime->tz_offset);
|
|
echo $this->timematrix($freetime,$this->bo->splittime('000000',False),0,$event->participants);
|
|
|
|
echo $this->view_event($event);
|
|
|
|
echo $this->get_response($event->id);
|
|
}
|
|
|
|
function set_action()
|
|
{
|
|
global $phpgw, $cal_id, $action;
|
|
|
|
if(!$this->bo->check_perms(PHPGW_ACL_EDIT))
|
|
{
|
|
$this->no_edit();
|
|
return;
|
|
}
|
|
|
|
$this->bo->set_status(intval($cal_id),intval($action));
|
|
|
|
Header('Location: '.$this->page('',''));
|
|
}
|
|
|
|
function planner()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$html = CreateObject('infolog.html');
|
|
$sbox = CreateObject('phpgwapi.sbox');
|
|
|
|
$intervals_per_day = 3; // this should be configurable
|
|
$interval = Array(
|
|
14 => 1,
|
|
15 => 1,
|
|
16 => 1,
|
|
17 => 1,
|
|
18 => 2,
|
|
19 => 2,
|
|
20 => 2,
|
|
21 => 2,
|
|
22 => 2,
|
|
23 => 2
|
|
);
|
|
|
|
$startdate = mktime(0,0,0,$this->bo->month,1,$this->bo->year) - $this->bo->datetime->tz_offset;
|
|
$days = $this->bo->datetime->days_in_month($this->bo->month,$this->bo->year);
|
|
$enddate = mktime(23,59,59,$this->bo->month,$this->bo->days,$this->bo->year) - $this->bo->datetime->tz_offset;
|
|
|
|
$header[] = lang('Category');
|
|
for ($d = 1; $d <= $days; $d++)
|
|
{
|
|
$dayname = substr(lang(date('D',mktime(0,0,0,$this->bo->month,$d,$this->bo->year))),0,2);
|
|
|
|
$header['.'.$d] = "colspan=$intervals_per_day align=center";
|
|
$header[$d] = '<a href="'.$html->link('/index.php',
|
|
array(
|
|
'menuaction' => 'calendar.uicalendar.add',
|
|
'date' => sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$d)
|
|
)
|
|
).'">'.$dayname.'<br>'.$d.'</a>';
|
|
}
|
|
$last_cell = $intervals_per_day * $days - 1;
|
|
|
|
$this->bo->store_to_cache($this->bo->year,$this->bo->month,1,0,0,1);
|
|
$firstday = intval(date('Ymd',mktime(0,0,0,$this->bo->month,1,$this->bo->year)));
|
|
$lastday = intval(date('Ymd',mktime(0,0,0,$this->bo->month + 1,0,$this->bo->year)));
|
|
|
|
for($v=$firstday;$v<=$lastday;$v += 1)
|
|
{
|
|
$daily = $this->bo->cached_events[$v];
|
|
@reset($daily);
|
|
if($this->debug)
|
|
{
|
|
echo "For Date : $v : Count of items : ".count($daily)."<br>\n";
|
|
}
|
|
for($g=0;$g<count($daily);$g++)
|
|
{
|
|
$event = $daily[$g];
|
|
$start = $this->bo->datetime->localdates($event->datetime);
|
|
$end = $this->bo->datetime->localdates($event->edatetime);
|
|
|
|
$view = $html->link('/index.php',
|
|
array(
|
|
'menuaction' => 'calendar.uicalendar.view',
|
|
'cal_id' => $event->id
|
|
)
|
|
);
|
|
|
|
$start_cell = $intervals_per_day * (intval(substr($v,6,2)) - 1);
|
|
$start_cell += $interval[$event->start->hour];
|
|
|
|
$end_cell = $interval_per_day = $intervals_per_day * (intval(substr($v,6,2))-1);
|
|
$end_cell += $interval[$event->end->hour];
|
|
|
|
$i = 0; // search for row of parent category
|
|
do {
|
|
++$i;
|
|
if ($c = $event->category)
|
|
{
|
|
$cat = $this->planner_category($event->category);
|
|
if ($cat['parent'])
|
|
{
|
|
$pcat = $this->planner_category($c = $cat['parent']);
|
|
}
|
|
else
|
|
{
|
|
$pcat = $cat;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$cat = $pcat = array( 'name' => lang('none'));
|
|
}
|
|
$k = $c.'_'.$i;
|
|
$ka = '.nr_'.$k;
|
|
if (!isset($rows[$k]))
|
|
{
|
|
if ($i > 1) // further line - no name
|
|
{
|
|
$rows[$k] = array();
|
|
$rows[$c.'_1']['._name'] = "rowspan=$i";
|
|
}
|
|
else
|
|
{
|
|
$rows[$k]['_name'] = $pcat['name'];
|
|
}
|
|
$rows[$ka] = 0;
|
|
}
|
|
$row = &$rows[$k];
|
|
$akt_cell = &$rows[$ka];
|
|
} while ($akt_cell > $start_cell);
|
|
|
|
if ($akt_cell < $start_cell)
|
|
{
|
|
$row[$event->id.'_1'] = ' ';
|
|
$row['.'.$event->id.'_1'] = 'colspan='.($start_cell-$akt_cell);
|
|
}
|
|
|
|
$opt = &$row['.'.$event->id.'_2'];
|
|
$cel = &$row[$event->id.'_2'];
|
|
if ($start_cell < $end_cell)
|
|
{
|
|
$opt .= "colspan=".(1 + $end_cell - $start_cell);
|
|
}
|
|
|
|
if ($bgcolor=$cat['color'])
|
|
{
|
|
$opt .= " bgcolor=$bgcolor";
|
|
}
|
|
$opt .= ' title="'.$event->title;
|
|
if ($event->description)
|
|
{
|
|
$opt .= " \n".$event->description;
|
|
}
|
|
$opt .= '" onClick="location=\''.$view.'\'"';
|
|
$cel = '<a href="'.$view.'">';
|
|
if ($event->priority == 3)
|
|
{
|
|
$cel .= $html->image('calendar','mini-calendar-bar.gif','','border=0');
|
|
}
|
|
$cel .= $html->image('calendar',count($event->participants)>1?'multi_3.gif':'single.gif',$this->planner_participants($event->participants),'border=0');
|
|
$cel .= '</a>';
|
|
|
|
$akt_cell = $end_cell + 1;
|
|
}
|
|
reset($rows);
|
|
ksort($rows);
|
|
reset($rows);
|
|
while (list($k,$r) = each($rows))
|
|
{
|
|
if (is_array($r))
|
|
{
|
|
$rows['.'.$k] = 'bgcolor='.$phpgw->nextmatchs->alternate_row_color();
|
|
$row = &$rows[$k];
|
|
$akt_cell = &$rows['.nr_'.$k];
|
|
if ($akt_cell <= $last_cell)
|
|
{
|
|
$row['3'] = ' ';
|
|
$row['.3'] = 'colspan='.(1+$last_cell-$akt_cell);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$bgcolor = 'bgcolor='.$phpgw_info['theme']['th_bg'];
|
|
echo $html->table(
|
|
array(
|
|
'_h' => $header,
|
|
'._h' => $bgcolor
|
|
)+$rows,
|
|
'width="100%" cols='.(1+$days*$intervals_per_day)
|
|
);
|
|
}
|
|
|
|
function matrixselect()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $this->bo->datetime->tz_offset;
|
|
|
|
$sb = CreateObject('phpgwapi.sbox');
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'mq' => 'matrix_query.tpl',
|
|
'form_button' => 'form_button_script.tpl'
|
|
)
|
|
);
|
|
$p->set_block('mq','matrix_query','matrix_query');
|
|
$p->set_block('mq','list','list');
|
|
|
|
$vars = Array(
|
|
'matrix_action' => lang('Daily Matrix View'),
|
|
'action_url' => $this->page('viewmatrix')
|
|
);
|
|
|
|
$p->set_var($vars);
|
|
|
|
// Date
|
|
$var[] = Array(
|
|
'field' => lang('Date'),
|
|
'data' => $phpgw->common->dateformatorder(
|
|
$sb->getYears('year',intval($phpgw->common->show_date($datetime,'Y')),intval($phpgw->common->show_date($datetime,'Y'))),
|
|
$sb->getMonthText('month',intval($phpgw->common->show_date($datetime,'n'))),
|
|
$sb->getDays('day',intval($phpgw->common->show_date($datetime,'d')))
|
|
)
|
|
);
|
|
|
|
// View type
|
|
$var[] = Array(
|
|
'field' => lang('View'),
|
|
'data' => '<select name="matrixtype">'."\n"
|
|
. '<option value="free/busy" selected>'.lang('free/busy').'</option>'."\n"
|
|
. '<option value="weekly">'.lang('Weekly').'</option>'."\n"
|
|
. '</select>'."\n"
|
|
);
|
|
|
|
// Participants
|
|
$accounts = $phpgw->acl->get_ids_for_location('run',1,'calendar');
|
|
$users = Array();
|
|
for($i=0;$i<count($accounts);$i++)
|
|
{
|
|
$user = $accounts[$i];
|
|
if(!isset($users[$user]))
|
|
{
|
|
$users[$user] = $phpgw->common->grab_owner_name($user);
|
|
if($phpgw->accounts->get_type($user) == 'g')
|
|
{
|
|
$group_members = $phpgw->acl->get_ids_for_location($user,1,'phpgw_group');
|
|
if($group_members != False)
|
|
{
|
|
for($j=0;$j<count($group_members);$j++)
|
|
{
|
|
if(!isset($users[$group_members[$j]]))
|
|
{
|
|
$users[$group_members[$j]] = $phpgw->common->grab_owner_name($group_members[$j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($num_users > 50)
|
|
{
|
|
$size = 15;
|
|
}
|
|
elseif ($num_users > 5)
|
|
{
|
|
$size = 5;
|
|
}
|
|
else
|
|
{
|
|
$size = $num_users;
|
|
}
|
|
$str = '';
|
|
@asort($users);
|
|
@reset($users);
|
|
while ($user = each($users))
|
|
{
|
|
if(($phpgw->accounts->exists($user[0]) && $this->bo->check_perms(PHPGW_ACL_READ,$user[0])) || $phpgw->accounts->get_type($user[0]) == 'g')
|
|
{
|
|
$str .= ' <option value="'.$user[0].'">('.$phpgw->accounts->get_type($user[0]).') '.$user[1].'</option>'."\n";
|
|
}
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang('Participants'),
|
|
'data' => "\n".' <select name="participants[]" multiple size="'.$size.'">'."\n".$str.' </select>'."\n"
|
|
);
|
|
|
|
for($i=0;$i<count($var);$i++)
|
|
{
|
|
$this->output_template_array($p,'rows','list',$var[$i]);
|
|
}
|
|
|
|
$vars = Array(
|
|
'submit_button' => lang('Submit'),
|
|
'action_url_button' => '',
|
|
'action_text_button' => lang('Cancel'),
|
|
'action_confirm_button' => 'onClick="history.back(-1)"',
|
|
'action_extra_field' => ''
|
|
);
|
|
|
|
$p->set_var($vars);
|
|
$p->parse('cancel_button','form_button');
|
|
$p->pparse('out','matrix_query');
|
|
}
|
|
|
|
function viewmatrix()
|
|
{
|
|
global $phpgw, $phpgw_info, $participants, $matrixtype;
|
|
|
|
$parts = Array();
|
|
$acct = CreateObject('phpgwapi.accounts',$this->bo->owner);
|
|
for($i=0;$i<count($participants);$i++)
|
|
{
|
|
switch ($phpgw->accounts->get_type($participants[$i]))
|
|
{
|
|
case 'g':
|
|
$members = $acct->members(intval($participants[$i]));
|
|
while($members != False && list($index,$member) = each($members))
|
|
{
|
|
if($this->bo->check_perms(PHPGW_ACL_READ,$member['account_id']) && !isset($parts[$member['account_id']]))
|
|
{
|
|
$parts[$member['account_id']] = 1;
|
|
}
|
|
}
|
|
break;
|
|
case 'u':
|
|
if($this->bo->check_perms(PHPGW_ACL_READ,$participants[$i]) && !isset($parts[$participants[$i]]))
|
|
{
|
|
$parts[$participants[$i]] = 1;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
unset($acct);
|
|
|
|
$participants = Array();
|
|
reset($parts);
|
|
while(list($key,$value) = each($parts))
|
|
{
|
|
$participants[] = $key;
|
|
}
|
|
|
|
reset($participants);
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
|
|
switch($matrixtype)
|
|
{
|
|
case 'free/busy':
|
|
$freetime = $this->bo->datetime->makegmttime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year);
|
|
echo $this->timematrix($freetime,$this->bo->splittime('000000',False),0,$parts);
|
|
break;
|
|
case 'weekly':
|
|
echo $this->display_weekly($this->bo->day,$this->bo->month,$this->bo->year,true,$participants);
|
|
break;
|
|
}
|
|
echo "\n".'<center>'."\n";
|
|
echo ' <form action="'.$this->page('viewmatrix').'" method="post" name="matrixform" target="viewmatrix">'."\n";
|
|
echo ' <input type="hidden" name="year" value="'.$this->bo->year.'">'."\n";
|
|
echo ' <input type="hidden" name="month" value="'.$this->bo->month.'">'."\n";
|
|
echo ' <input type="hidden" name="day" value="'.$this->bo->day.'">'."\n";
|
|
echo ' <input type="hidden" name="matrixtype" value="'.$matrixtype.'">'."\n";
|
|
for ($i=0;$i<count($participants);$i++)
|
|
{
|
|
echo ' <input type="hidden" name="participants[]" value="'.$participants[$i].'">'."\n";
|
|
}
|
|
echo ' <input type="submit" value="'.lang('refresh').'">'."\n";
|
|
echo ' </form>'."\n";
|
|
echo '</center>'."\n";
|
|
}
|
|
|
|
function search()
|
|
{
|
|
global $phpgw, $phpgw_info, $keywords, $from;
|
|
|
|
if (! $keywords)
|
|
{
|
|
// If we reach this, it is because they didn't search for anything,
|
|
// attempt to send them back to where they where.
|
|
Header('Location: ' . $phpgw->link($from,'owner='.$owner.'&month='.$month.'&day='.$day.'&year='.$year));
|
|
}
|
|
else
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
}
|
|
|
|
$error = '';
|
|
|
|
if (strlen($keywords) == 0)
|
|
{
|
|
echo '<b>'.lang('Error').':</b>';
|
|
echo lang('You must enter one or more search keywords.');
|
|
return;
|
|
}
|
|
|
|
$matches = 0;
|
|
|
|
// There is currently a problem searching in with repeated events.
|
|
// It spits back out the date it was entered. I would like to to say that
|
|
// it is a repeated event.
|
|
|
|
// This has been solved by the little icon indicator for recurring events.
|
|
|
|
$event_ids = $this->bo->search_keywords($keywords);
|
|
$ids = Array();
|
|
while(list($key,$id) = each($event_ids))
|
|
{
|
|
$event = $this->bo->read_entry($id);
|
|
|
|
$datetime = mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year) - $phpgw->calendar->datetime->tz_offset;
|
|
|
|
$ids[strval($event->id)]++;
|
|
$info[strval($event->id)] = $phpgw->common->show_date($datetime).$this->link_to_entry($event,$event->start->month,$event->start->mday,$event->start->year);
|
|
|
|
}
|
|
$matches = count($event_ids);
|
|
|
|
if ($matches > 0)
|
|
{
|
|
$matches = count($ids);
|
|
}
|
|
|
|
if ($matches == 1)
|
|
{
|
|
$quantity = lang('1 match found').'.';
|
|
}
|
|
elseif ($matches > 0)
|
|
{
|
|
$quantity = lang('x matches found',$matches).'.';
|
|
}
|
|
else
|
|
{
|
|
echo '<b>'.lang('Error').':</b>';
|
|
echo lang('no matches found.');
|
|
return;
|
|
}
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'search_form' => 'search.tpl'
|
|
)
|
|
);
|
|
$p->set_block('search_form','search','search');
|
|
$p->set_block('search_form','search_list_header','search_list_header');
|
|
$p->set_block('search_form','search_list','search_list');
|
|
$p->set_block('search_form','search_list_footer','search_list_footer');
|
|
|
|
$var = Array(
|
|
'color' => $phpgw_info['theme']['bg_text'],
|
|
'search_text' => lang('Search Results'),
|
|
'quantity' => $quantity
|
|
);
|
|
$p->set_var($var);
|
|
|
|
if($matches > 0)
|
|
{
|
|
$p->parse('rows','search_list_header',True);
|
|
}
|
|
// now sort by number of hits
|
|
arsort($ids);
|
|
for(reset($ids);$key=key($ids);next($ids))
|
|
{
|
|
$p->set_var('result_desc',$info[$key]);
|
|
$p->parse('rows','search_list',True);
|
|
}
|
|
|
|
if($matches > 0)
|
|
{
|
|
$p->parse('rows','search_list_footer',True);
|
|
}
|
|
|
|
$p->pparse('out','search');
|
|
}
|
|
|
|
/* Private functions */
|
|
function _debug_sqsof()
|
|
{
|
|
$data = array(
|
|
'filter' => $this->bo->filter,
|
|
'cat_id' => $this->bo->cat_id,
|
|
'owner' => $this->bo->owner,
|
|
'year' => $this->bo->year,
|
|
'month' => $this->bo->month,
|
|
'day' => $this->bo->day
|
|
);
|
|
echo '<br>UI:';
|
|
_debug_array($data);
|
|
}
|
|
|
|
/* Called only by get_list(), just prior to page footer. */
|
|
function save_sessiondata()
|
|
{
|
|
$data = array(
|
|
'filter' => $this->bo->filter,
|
|
'cat_id' => $this->bo->cat_id,
|
|
'owner' => $this->bo->owner,
|
|
'year' => $this->bo->year,
|
|
'month' => $this->bo->month,
|
|
'day' => $this->bo->day
|
|
);
|
|
$this->bo->save_sessiondata($data);
|
|
}
|
|
|
|
function output_template_array(&$p,$row,$list,$var)
|
|
{
|
|
$p->set_var($var);
|
|
$p->parse($row,$list,True);
|
|
}
|
|
|
|
function display_item(&$p,$field,$data)
|
|
{
|
|
global $phpgw;
|
|
static $tr_color;
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
$var = Array(
|
|
'bg_color' => $tr_color,
|
|
'field' => $field,
|
|
'data' => $data
|
|
);
|
|
$this->output_template_array($p,'row','pref_list',$var);
|
|
}
|
|
|
|
function page($page='',$params='')
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if($page == '')
|
|
{
|
|
$page_ = explode('.',$this->bo->prefs['calendar']['defaultcalendar']);
|
|
$page = $page_[0];
|
|
if ($page=='index' || ($page != 'day' && $page != 'week' && $page != 'month' && $page != 'year'))
|
|
{
|
|
$page = 'month';
|
|
$phpgw->preferences->add('calendar','defaultcalendar','month');
|
|
$phpgw->preferences->save_repository();
|
|
}
|
|
}
|
|
return $phpgw->link('/index.php','menuaction='.$phpgw_info['flags']['currentapp'].'.ui'.$phpgw_info['flags']['currentapp'].'.'.$page.$params);
|
|
}
|
|
|
|
function header()
|
|
{
|
|
global $phpgw, $cal_id, $date, $keywords, $matrixtype, $participants, $tpl, $menuaction;
|
|
|
|
$cols = 8;
|
|
if($this->bo->check_perms(PHPGW_ACL_PRIVATE) == True)
|
|
{
|
|
$cols++;
|
|
}
|
|
|
|
$tpl = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$tpl->set_unknowns('remove');
|
|
|
|
include($this->template_dir.'/header.inc.php');
|
|
$header = $tpl->fp('out','head');
|
|
unset($tpl);
|
|
echo $header;
|
|
}
|
|
|
|
function footer()
|
|
{
|
|
global $phpgw, $menuaction;
|
|
|
|
list(,,$method) = explode('.',$menuaction);
|
|
|
|
if (@$this->bo->printer_friendly)
|
|
{
|
|
return;
|
|
// $phpgw->common->phpgw_footer();
|
|
// $phpgw->common->phpgw_exit();
|
|
}
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
|
|
$templates = Array(
|
|
'footer' => 'footer.tpl'
|
|
);
|
|
|
|
$p->set_file($templates);
|
|
$p->set_block('footer','footer_table','footer_table');
|
|
$p->set_block('footer','footer_row','footer_row');
|
|
|
|
$m = $this->bo->month;
|
|
$y = $this->bo->year;
|
|
|
|
$d_time = mktime(0,0,0,$m,1,$y);
|
|
$thisdate = date('Ymd',$d_time);
|
|
$y--;
|
|
|
|
$str = '';
|
|
for ($i = 0; $i < 25; $i++)
|
|
{
|
|
$m++;
|
|
if ($m > 12)
|
|
{
|
|
$m = 1;
|
|
$y++;
|
|
}
|
|
$d = mktime(0,0,0,$m,1,$y);
|
|
$str .= '<option value="'.date('Ymd',$d).'"'.(date('Ymd',$d) == $thisdate?' selected':'').'>'.lang(date('F', $d)).strftime(' %Y', $d).'</option>'."\n";
|
|
}
|
|
|
|
$var = Array(
|
|
'action_url' => $this->page($method,''),
|
|
'form_name' => 'SelectMonth',
|
|
'label' => lang('Month'),
|
|
'form_label' => 'date',
|
|
'form_onchange' => 'document.SelectMonth.submit()',
|
|
'row' => $str,
|
|
'go' => lang('Go!')
|
|
);
|
|
$this->output_template_array($p,'table_row','footer_row',$var);
|
|
|
|
$y = $this->bo->year;
|
|
$m = $this->bo->month;
|
|
$d = $this->bo->day;
|
|
unset($thisdate);
|
|
$thisdate = $this->bo->datetime->makegmttime(0,0,0,$m,$d,$y);
|
|
$sun = $this->bo->datetime->get_weekday_start($y,$m,$d) - $this->bo->datetime->tz_offset - 7200;
|
|
|
|
$str = '';
|
|
for ($i = -7; $i <= 7; $i++)
|
|
{
|
|
$begin = $sun + (3600 * 24 * 7 * $i);
|
|
$end = $begin + (3600 * 24 * 6);
|
|
$str .= '<option value="' . $phpgw->common->show_date($begin,'Ymd') . '"'.($begin <= $thisdate['raw'] && $end >= $thisdate['raw']?' selected':'')
|
|
.'>' . lang($phpgw->common->show_date($begin,'F')) . ' ' . $phpgw->common->show_date($begin,'d') . '-'
|
|
. lang($phpgw->common->show_date($end,'F')) . ' ' . $phpgw->common->show_date($end,'d') . '</option>'."\n";
|
|
}
|
|
|
|
$var = Array(
|
|
'action_url' => $this->page($method,''),
|
|
'form_name' => 'SelectWeek',
|
|
'label' => lang('Week'),
|
|
'form_label' => 'date',
|
|
'form_onchange' => 'document.SelectWeek.submit()',
|
|
'row' => $str,
|
|
'go' => lang('Go!')
|
|
);
|
|
|
|
$this->output_template_array($p,'table_row','footer_row',$var);
|
|
|
|
$str = '';
|
|
for ($i = ($y - 3); $i < ($y + 3); $i++)
|
|
{
|
|
$str .= '<option value="'.$i.'"'.($i == $y?' selected':'').'>'.$i.'</option>'."\n";
|
|
}
|
|
|
|
$var = Array(
|
|
'action_url' => $this->page($method,''),
|
|
'form_name' => 'SelectYear',
|
|
'label' => lang('Year'),
|
|
'form_label' => 'year',
|
|
'form_onchange' => 'document.SelectYear.submit()',
|
|
'row' => $str,
|
|
'go' => lang('Go!')
|
|
);
|
|
$this->output_template_array($p,'table_row','footer_row',$var);
|
|
|
|
$p->pparse('out','footer_table');
|
|
unset($p);
|
|
}
|
|
|
|
function no_edit()
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if(!$isset($phpgw_info['flags']['noheader']))
|
|
{
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw_info['flags']['noappheader'] = True;
|
|
$phpgw_info['flags']['noappfooter'] = True;
|
|
$phpgw->common->phpgw_header();
|
|
}
|
|
echo '<center>You do not have permission to edit this appointment!</center>';
|
|
return;
|
|
}
|
|
|
|
function link_to_entry($event,$month,$day,$year)
|
|
{
|
|
global $phpgw, $phpgw_info, $grants;
|
|
|
|
$str = '';
|
|
$is_private = $this->bo->is_private($event,$this->bo->owner);
|
|
$editable = ((!$this->bo->printer_friendly) && (($is_private && $this->bo->check_perms(PHPGW_ACL_PRIVATE)) || !$is_private));
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('remove');
|
|
$p->set_file(
|
|
Array(
|
|
'link_picture' => 'link_pict.tpl'
|
|
)
|
|
);
|
|
$p->set_block('link_picture','link_pict','link_pict');
|
|
$p->set_block('link_picture','pict','pict');
|
|
$p->set_block('link_picture','link_open','link_open');
|
|
$p->set_block('link_picture','link_close','link_close');
|
|
$p->set_block('link_picture','link_text','link_text');
|
|
|
|
$starttime = mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year) - $this->bo->datetime->tz_offset;
|
|
$endtime = mktime($event->end->hour,$event->end->min,$event->end->sec,$event->end->month,$event->end->mday,$event->end->year) - $this->bo->datetime->tz_offset;
|
|
$rawdate = mktime(0,0,0,$month,$day,$year);
|
|
$rawdate_offset = $rawdate - $this->bo->datetime->tz_offset;
|
|
$nextday = mktime(0,0,0,$month,$day + 1,$year) - $this->bo->datetime->tz_offset;
|
|
if (intval($phpgw->common->show_date($starttime,'Hi')) && $starttime == $endtime)
|
|
{
|
|
$time = $phpgw->common->show_date($starttime,$this->bo->users_timeformat);
|
|
}
|
|
elseif ($starttime <= $rawdate_offset && $endtime >= $nextday - 60)
|
|
{
|
|
$time = '[ '.lang('All Day').' ]';
|
|
}
|
|
elseif (intval($phpgw->common->show_date($starttime,'Hi')) || $starttime != $endtime)
|
|
{
|
|
if($starttime < $rawdate_offset && $event->recur_type==MCAL_RECUR_NONE)
|
|
{
|
|
$start_time = $phpgw->common->show_date($rawdate_offset,$this->bo->users_timeformat);
|
|
}
|
|
else
|
|
{
|
|
$start_time = $phpgw->common->show_date($starttime,$this->bo->users_timeformat);
|
|
}
|
|
|
|
if($endtime >= ($rawdate_offset + 86400))
|
|
{
|
|
$end_time = $phpgw->common->show_date(mktime(23,59,59,$month,$day,$year) - $this->bo->datetime->tz_offset,$this->bo->users_timeformat);
|
|
}
|
|
else
|
|
{
|
|
$end_time = $phpgw->common->show_date($endtime,$this->bo->users_timeformat);
|
|
}
|
|
$time = $start_time.'-'.$end_time;
|
|
}
|
|
else
|
|
{
|
|
$time = '';
|
|
}
|
|
$text = '';;
|
|
if(!$is_private)
|
|
{
|
|
$text .= $this->bo->display_status($event->users_status);
|
|
}
|
|
$text = '<font size="-2" face="'.$phpgw_info['theme']['font'].'"><nobr>'.$time.'</nobr> '.$this->bo->get_short_field($event,$is_private,'title').$text.'</font>'.$phpgw->browser->br;
|
|
|
|
if ($editable)
|
|
{
|
|
$p->set_var('link_link',$this->page('view','&cal_id='.$event->id));
|
|
$p->set_var('lang_view',lang('View this entry'));
|
|
$p->parse('picture','link_open',True);
|
|
|
|
if($event->priority == 3)
|
|
{
|
|
$picture[] = Array(
|
|
'pict' => $phpgw->common->image('calendar','high.gif'),
|
|
'width' => 8,
|
|
'height' => 17
|
|
);
|
|
}
|
|
if($event->recur_type == MCAL_RECUR_NONE)
|
|
{
|
|
$picture[] = Array(
|
|
'pict' => $phpgw->common->image('calendar','circle.gif'),
|
|
'width' => 5,
|
|
'height' => 7
|
|
);
|
|
}
|
|
else
|
|
{
|
|
$picture[] = Array(
|
|
'pict' => $phpgw->common->image('calendar','recur.gif'),
|
|
'width' => 12,
|
|
'height' => 12
|
|
);
|
|
}
|
|
if(count($event->participants) > 1)
|
|
{
|
|
$picture[] = Array(
|
|
'pict' => $phpgw->common->image('calendar','multi_3.gif'),
|
|
'width' => 14,
|
|
'height' => 14
|
|
);
|
|
}
|
|
if($event->public == 0)
|
|
{
|
|
$picture[] = Array(
|
|
'pict' => $phpgw->common->image('calendar','private.gif'),
|
|
'width' => 13,
|
|
'height' => 13
|
|
);
|
|
}
|
|
|
|
$description = $this->bo->get_short_field($event,$is_private,'description');
|
|
for($i=0;$i<count($picture);$i++)
|
|
{
|
|
$var = Array(
|
|
'pic_image' => $picture[$i]['pict'],
|
|
'width' => $picture[$i]['width'],
|
|
'height' => $picture[$i]['height'],
|
|
'description' => $description
|
|
);
|
|
$this->output_template_array($p,'picture','pict',$var);
|
|
}
|
|
}
|
|
if ($text)
|
|
{
|
|
$var = Array(
|
|
'text' => $text
|
|
);
|
|
$this->output_template_array($p,'picture','link_text',$var);
|
|
}
|
|
|
|
if ($editable)
|
|
{
|
|
$p->parse('picture','link_close',True);
|
|
}
|
|
$str = $p->fp('out','link_pict');
|
|
unset($p);
|
|
return $str;
|
|
}
|
|
|
|
function overlap($overlapping_events,$event)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$month = $event->start->month;
|
|
$mday = $event->start->mday;
|
|
$year = $event->start->year;
|
|
|
|
$start = mktime($event->start->hour,$event->start->min,$event->start->sec,$month,$mday,$year) - $this->bo->datetime->tz_offset;
|
|
$end = mktime($event->end->hour,$event->end->min,$event->end->sec,$event->end->month,$event->end->mday,$event->end->year) - $this->bo->datetime->tz_offset;
|
|
|
|
$overlap = '';
|
|
for($i=0;$i<count($overlapping_events);$i++)
|
|
{
|
|
$overlap .= '<li>'.$this->link_to_entry($this->bo->read_entry($overlapping_events[$i]),$month,$mday,$year);
|
|
}
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$p = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('calendar'));
|
|
$p->set_file(
|
|
Array(
|
|
'overlap' => 'overlap.tpl',
|
|
'form_button' => 'form_button_script.tpl'
|
|
)
|
|
);
|
|
|
|
$var = Array(
|
|
'color' => $phpgw_info['theme']['bg_text'],
|
|
'overlap_title' => lang('Scheduling Conflict'),
|
|
'overlap_text' => lang('Your suggested time of <B> x - x </B> conflicts with the following existing calendar entries:',$phpgw->common->show_date($start),$phpgw->common->show_date($end)),
|
|
'overlap_list' => $overlap
|
|
);
|
|
$p->set_var($var);
|
|
|
|
$date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->mday);
|
|
$var = Array(
|
|
'action_url_button' => $phpgw->link('/index.php',Array('menuaction'=>'calendar.bocalendar.update','readsess'=>1,'date'=>$date)),
|
|
'action_text_button' => lang('Ignore Conflict'),
|
|
'action_confirm_button' => '',
|
|
'action_extra_field' => ''
|
|
);
|
|
$this->output_template_array($p,'resubmit_button','form_button',$var);
|
|
|
|
$var = Array(
|
|
'action_url_button' => $phpgw->link('/index.php',Array('menuaction'=>'calendar.uicalendar.edit','readsess'=>1,'date'=>$date)),
|
|
'action_text_button' => lang('Re-Edit Event'),
|
|
'action_confirm_button' => '',
|
|
'action_extra_field' => ''
|
|
);
|
|
$this->output_template_array($p,'resubmit_button','form_button',$var);
|
|
$p->pparse('out','overlap');
|
|
}
|
|
|
|
function planner_participants($parts)
|
|
{
|
|
global $phpgw;
|
|
static $id2lid = array();
|
|
|
|
$names = '';
|
|
while (list($id,$status) = each($parts))
|
|
{
|
|
if (!isset($id2lid[$id]))
|
|
{
|
|
$id2lid[$id] = $phpgw->common->grab_owner_name($id);
|
|
}
|
|
if (strlen($names))
|
|
{
|
|
$names .= ",\n";
|
|
}
|
|
$names .= $id2lid[$id]." ($status)";
|
|
}
|
|
if($this->debug)
|
|
{
|
|
echo "Inside participants() : $names<br>\n";
|
|
}
|
|
return $names;
|
|
}
|
|
|
|
function planner_category($id)
|
|
{
|
|
global $phpgw;
|
|
static $cats = array();
|
|
|
|
if (!isset($cats[$id]))
|
|
{
|
|
$cat_arr = $this->cat->return_single( $id );
|
|
$cats[$id] = $cat_arr[0];
|
|
$cats[$id]['color'] = strstr($cats[$id]['description'],'#');
|
|
}
|
|
return $cats[$id];
|
|
}
|
|
|
|
function week_header($month,$year,$display_name = False)
|
|
{
|
|
global $phpgw_info;
|
|
|
|
$this->weekstarttime = $this->bo->datetime->get_weekday_start($year,$month,1);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('remove');
|
|
$p->set_file(
|
|
Array (
|
|
'month_header' => 'month_header.tpl'
|
|
)
|
|
);
|
|
$p->set_block('month_header','monthly_header','monthly_header');
|
|
$p->set_block('month_header','column_title','column_title');
|
|
|
|
$var = Array(
|
|
'bgcolor' => $phpgw_info['theme']['th_bg'],
|
|
'font_color' => $phpgw_info['theme']['th_text']
|
|
);
|
|
if($this->bo->printer_friendly && @$this->bo->prefs['calendar']['print_black_white'])
|
|
{
|
|
$var = Array(
|
|
'bgcolor' => '',
|
|
'font_color' => ''
|
|
);
|
|
}
|
|
$p->set_var($var);
|
|
|
|
$p->set_var('col_width','14');
|
|
if($display_name == True)
|
|
{
|
|
$p->set_var('col_title',lang('name'));
|
|
$p->parse('column_header','column_title',True);
|
|
$p->set_var('col_width','12');
|
|
}
|
|
|
|
for($i=0;$i<7;$i++)
|
|
{
|
|
$p->set_var('col_title',lang($this->bo->datetime->days[$i]));
|
|
$p->parse('column_header','column_title',True);
|
|
}
|
|
return $p->fp('out','monthly_header');
|
|
}
|
|
|
|
function display_week($startdate,$weekly,$cellcolor,$display_name = False,$owner=0,$monthstart=0,$monthend=0)
|
|
{
|
|
global $phpgw, $phpgw_info, $grants;
|
|
|
|
if($owner == 0) { $owner= $phpgw_info['user']['account_id']; }
|
|
|
|
$temp_owner = $this->bo->owner;
|
|
$this->bo->owner = $owner;
|
|
|
|
$str = '';
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('keep');
|
|
|
|
$p->set_file(
|
|
Array (
|
|
'month_header' => 'month_header.tpl',
|
|
'month_day' => 'month_day.tpl'
|
|
)
|
|
);
|
|
$p->set_block('month_header','monthly_header','monthly_header');
|
|
$p->set_block('month_header','month_column','month_column');
|
|
$p->set_block('month_day','month_daily','month_daily');
|
|
$p->set_block('month_day','day_event','day_event');
|
|
$p->set_block('month_day','event','event');
|
|
|
|
$p->set_var('extra','');
|
|
$p->set_var('col_width','14');
|
|
if($display_name)
|
|
{
|
|
$p->set_var('column_data',$phpgw->common->grab_owner_name($owner));
|
|
$p->parse('column_header','month_column',True);
|
|
$p->set_var('col_width','12');
|
|
}
|
|
$today = date('Ymd',time());
|
|
$daily = $this->bo->set_week_array($startdate,$cellcolor,$weekly);
|
|
@reset($daily);
|
|
while(list($date,$day_params) = each($daily))
|
|
{
|
|
$year = intval(substr($date,0,4));
|
|
$month = intval(substr($date,4,2));
|
|
$day = intval(substr($date,6,2));
|
|
$var = Array(
|
|
'column_data' => '',
|
|
'extra' => ''
|
|
);
|
|
$p->set_var($var);
|
|
if ($weekly || ($date >= $monthstart && $date <= $monthend))
|
|
{
|
|
if ($day_params['new_event'])
|
|
{
|
|
$new_event_link = '<a href="'.$this->page('add','&date'.$date).'">'
|
|
. '<img src="'.$phpgw->common->image('calendar','new.gif').'" width="10" height="10" alt="'.lang('New Entry').'" border="0" align="center">'
|
|
. '</a>';
|
|
$day_number = '<a href="'.$this->page('day','&month='.$month.'&day='.$day.'&year='.$year).'">'.$day.'</a>';
|
|
}
|
|
else
|
|
{
|
|
$new_event_link = '';
|
|
$day_number = $day;
|
|
}
|
|
|
|
$var = Array(
|
|
'extra' => $day_params['extra'],
|
|
'new_event_link' => $new_event_link,
|
|
'day_number' => $day_number
|
|
);
|
|
|
|
$p->set_var($var);
|
|
|
|
if($day_params['holidays'])
|
|
{
|
|
reset($day_params['holidays']);
|
|
while(list($key,$value) = each($day_params['holidays']))
|
|
{
|
|
$var = Array(
|
|
'day_events' => '<font face="'.$phpgw_info['theme']['font'].'" size="-1">'.$value.'</font>'.$phpgw->browser->br
|
|
);
|
|
$this->output_template_array($p,'daily_events','event',$var);
|
|
}
|
|
}
|
|
|
|
if($day_params['appts'])
|
|
{
|
|
$lr_events = CreateObject('calendar.calendar_item');
|
|
$var = Array(
|
|
'week_day_font_size' => '2',
|
|
'events' => ''
|
|
);
|
|
$p->set_var($var);
|
|
$rep_events = $this->bo->cached_events[$date];
|
|
for ($k=0;$k<count($rep_events);$k++)
|
|
{
|
|
$lr_events = $rep_events[$k];
|
|
$p->set_var('day_events',$this->link_to_entry($lr_events,$month,$day,$year));
|
|
$p->parse('events','event',True);
|
|
$p->set_var('day_events','');
|
|
}
|
|
}
|
|
$p->parse('daily_events','day_event',True);
|
|
$p->parse('column_data','month_daily',True);
|
|
$p->set_var('daily_events','');
|
|
$p->set_var('events','');
|
|
if($day_params['week'])
|
|
{
|
|
$var = Array(
|
|
'week_day_font_size' => '-2',
|
|
'events' => (!$this->bo->printer_friendly?'<a href="'.$this->page('week','&date='.$date).'">' .$day_params['week'].'</a>':$day_params['week'])
|
|
);
|
|
$this->output_template_array($p,'column_data','day_event',$var);
|
|
$p->set_var('events','');
|
|
}
|
|
}
|
|
$p->parse('column_header','month_column',True);
|
|
$p->set_var('column_data','');
|
|
}
|
|
$this->bo->owner = $temp_owner;
|
|
return $p->fp('out','monthly_header');
|
|
}
|
|
|
|
function display_month($month,$year,$showyear,$owner=0)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->store_to_cache($year,$month,1);
|
|
|
|
$monthstart = intval(date('Ymd',mktime(0,0,0,$month ,1,$year)));
|
|
$monthend = intval(date('Ymd',mktime(0,0,0,$month + 1,0,$year)));
|
|
|
|
$start = $this->bo->datetime->get_weekday_start($year, $month, 1);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('keep');
|
|
|
|
$p->set_file(
|
|
Array(
|
|
'week' => 'month_day.tpl'
|
|
)
|
|
);
|
|
$p->set_block('week','m_w_table','m_w_table');
|
|
$p->set_block('week','event','event');
|
|
|
|
|
|
$var = Array(
|
|
'cols' => 7,
|
|
'day_events'=> $this->week_header($month,$year,False)
|
|
);
|
|
$this->output_template_array($p,'row','event',$var);
|
|
|
|
$cellcolor = $phpgw_info['theme']['row_on'];
|
|
|
|
for ($i=intval($start);intval(date('Ymd',$i)) <= $monthend;$i += 604800)
|
|
{
|
|
$cellcolor = $phpgw->nextmatchs->alternate_row_color($cellcolor);
|
|
$var = Array(
|
|
'day_events' => $this->display_week($i,False,$cellcolor,False,$owner,$monthstart,$monthend)
|
|
);
|
|
$this->output_template_array($p,'row','event',$var);
|
|
}
|
|
return $p->fp('out','m_w_table');
|
|
}
|
|
|
|
function display_weekly($day,$month,$year,$showyear,$owners=0)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('keep');
|
|
|
|
$p->set_file(
|
|
Array(
|
|
'week' => 'month_day.tpl'
|
|
)
|
|
);
|
|
$p->set_block('week','m_w_table','m_w_table');
|
|
$p->set_block('week','event','event');
|
|
|
|
$start = $this->bo->datetime->get_weekday_start($year, $month, $day);
|
|
|
|
$cellcolor = $phpgw_info['theme']['row_off'];
|
|
|
|
$true_printer_friendly = $this->bo->printer_friendly;
|
|
|
|
if(is_array($owners))
|
|
{
|
|
$display_name = True;
|
|
$counter = count($owners);
|
|
$owners_array = $owners;
|
|
$cols = 8;
|
|
}
|
|
else
|
|
{
|
|
$display_name = False;
|
|
$counter = 1;
|
|
$owners_array[0] = $owners;
|
|
$cols = 7;
|
|
}
|
|
$var = Array(
|
|
'cols' => $cols,
|
|
'day_events' => $this->week_header($month,$year,$display_name)
|
|
);
|
|
$this->output_template_array($p,'row','event',$var);
|
|
|
|
$original_owner = $this->bo->owner;
|
|
for($i=0;$i<$counter;$i++)
|
|
{
|
|
$this->so->owner = $owners_array[$i];
|
|
$this->bo->store_to_cache($year,$month,1);
|
|
$p->set_var('day_events',$this->display_week($start,True,$cellcolor,$display_name,$owners_array[$i]));
|
|
$p->parse('row','event',True);
|
|
}
|
|
$this->bo->owner = $original_owner;
|
|
$this->bo->printer_friendly = $true_printer_friendly;
|
|
return $p->fp('out','m_w_table');
|
|
}
|
|
|
|
function view_add_day($day,&$repeat_days)
|
|
{
|
|
if($repeat_days)
|
|
{
|
|
$repeat_days .= ', ';
|
|
}
|
|
$repeat_days .= $day.' ';
|
|
}
|
|
|
|
function view_event($event)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$pri = Array(
|
|
1 => lang('Low'),
|
|
2 => lang('Normal'),
|
|
3 => lang('High')
|
|
);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
|
|
$p->set_unknowns('keep');
|
|
$p->set_file(
|
|
Array(
|
|
'view' => 'view.tpl'
|
|
)
|
|
);
|
|
$p->set_block('view','view_event','view_event');
|
|
$p->set_block('view','list','list');
|
|
|
|
$var = Array(
|
|
'bg_text'=> $phpgw_info['theme']['bg_text'],
|
|
'name' => $event->title
|
|
);
|
|
$p->set_var($var);
|
|
unset($var);
|
|
|
|
// Some browser add a \n when its entered in the database. Not a big deal
|
|
// this will be printed even though its not needed.
|
|
if (nl2br($event->description))
|
|
{
|
|
$var[] = Array(
|
|
'field' => lang('Description'),
|
|
'data' => nl2br($event->description)
|
|
);
|
|
}
|
|
|
|
if ($event->category)
|
|
{
|
|
$this->cat->categories($this->bo->owner,'calendar');
|
|
$cat = $this->cat->return_single($event->category);
|
|
$var[] = Array(
|
|
'field' => lang('Category'),
|
|
'data' => $cat[0]['name']
|
|
);
|
|
}
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Start Date/Time'),
|
|
'data' => $phpgw->common->show_date(mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year) - $this->bo->datetime->tz_offset)
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('End Date/Time'),
|
|
'data' => $phpgw->common->show_date(mktime($event->end->hour,$event->end->min,$event->end->sec,$event->end->month,$event->end->mday,$event->end->year) - $this->bo->datetime->tz_offset)
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Priority'),
|
|
'data' => $pri[$event->priority]
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Created By'),
|
|
'data' => $phpgw->common->grab_owner_name($event->owner)
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Updated'),
|
|
'data' => $phpgw->common->show_date(mktime($event->mod->hour,$event->mod->min,$event->mod->sec,$event->mod->month,$event->mod->mday,$event->mod->year) - $this->bo->datetime->tz_offset)
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Private'),
|
|
'data' => $event->public==True?'False':'True'
|
|
);
|
|
|
|
if($event->groups[0])
|
|
{
|
|
$cal_grps = '';
|
|
for($i=0;$i<count($event->groups);$i++)
|
|
{
|
|
if($i>0)
|
|
{
|
|
$cal_grps .= '<br>';
|
|
}
|
|
$cal_grps .= $phpgw->accounts->id2name($event->groups[$i]);
|
|
}
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Groups'),
|
|
'data' => $cal_grps
|
|
);
|
|
}
|
|
|
|
$str = '';
|
|
reset($event->participants);
|
|
while (list($user,$short_status) = each($event->participants))
|
|
{
|
|
if($phpgw->accounts->exists($user))
|
|
{
|
|
if($str)
|
|
{
|
|
$str .= '<br>';
|
|
}
|
|
|
|
$long_status = $this->bo->get_long_status($short_status);
|
|
|
|
$str .= $phpgw->common->grab_owner_name($user).' ('.($this->bo->check_perms(PHPGW_ACL_EDIT,$user)?'<a href="'.$this->page('edit_status','&cal_id='.$event->id.'&owner='.$user).'">'.$long_status.'</a>':$long_status).')'."\n";
|
|
}
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang('Participants'),
|
|
'data' => $str
|
|
);
|
|
|
|
// Repeated Events
|
|
$rpt_type = Array(
|
|
MCAL_RECUR_NONE => 'none',
|
|
MCAL_RECUR_DAILY => 'daily',
|
|
MCAL_RECUR_WEEKLY => 'weekly',
|
|
MCAL_RECUR_MONTHLY_WDAY => 'monthlybyday',
|
|
MCAL_RECUR_MONTHLY_MDAY => 'monthlybydate',
|
|
MCAL_RECUR_YEARLY => 'yearly'
|
|
);
|
|
$str = lang($rpt_type[$event->recur_type]);
|
|
if($event->recur_type <> MCAL_RECUR_NONE)
|
|
{
|
|
$str_extra = '';
|
|
if ($event->recur_enddate->mday != 0 && $event->recur_enddate->month != 0 && $event->recur_enddate->year != 0)
|
|
{
|
|
$recur_end = mktime($event->recur_enddate->hour,$event->recur_enddate->min,$event->recur_enddate->sec,$event->recur_enddate->month,$event->recur_enddate->mday,$event->recur_enddate->year);
|
|
if($recur_end != 0)
|
|
{
|
|
$recur_end -= $this->bo->datetime->tz_offset;
|
|
$str_extra .= lang('ends').': '.lang($phpgw->common->show_date($recur_end,'l')).', '.lang($phpgw->common->show_date($recur_end,'F')).' '.$phpgw->common->show_date($recur_end,'d, Y').' ';
|
|
}
|
|
}
|
|
if($event->recur_type == MCAL_RECUR_WEEKLY || $event->recur_type == MCAL_RECUR_DAILY)
|
|
{
|
|
$repeat_days = '';
|
|
if($this->bo->prefs['calendar']['weekdaystarts'] == 'Sunday')
|
|
{
|
|
if (!!($event->recur_data & MCAL_M_SUNDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Sunday'),$repeat_days);
|
|
}
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_MONDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Monday'),$repeat_days);
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_TUESDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Tuesday'),$repeat_days);
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_WEDNESDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Wednesday'),$repeat_days);
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_THURSDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Thursday'),$repeat_days);
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_FRIDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Friday'),$repeat_days);
|
|
}
|
|
if (!!($event->recur_data & MCAL_M_SATURDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Saturday'),$repeat_days);
|
|
}
|
|
if($this->bo->prefs['calendar']['weekdaystarts'] == 'Monday')
|
|
{
|
|
if (!!($event->recur_data & MCAL_M_SUNDAY) == True)
|
|
{
|
|
$this->view_add_day(lang('Sunday'),$repeat_days);
|
|
}
|
|
}
|
|
if($repeat_days <> '')
|
|
{
|
|
$str_extra .= lang('days repeated').': '.$repeat_days;
|
|
}
|
|
}
|
|
if($event->recur_interval)
|
|
{
|
|
$str_extra .= lang('Interval').': '.$event->recur_interval;
|
|
}
|
|
|
|
if($str_extra)
|
|
{
|
|
$str .= ' ('.$str_extra.')';
|
|
}
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Repetition'),
|
|
'data' => $str
|
|
);
|
|
}
|
|
|
|
for($i=0;$i<count($var);$i++)
|
|
{
|
|
$this->output_template_array($p,'row','list',$var[$i]);
|
|
}
|
|
|
|
return $p->fp('out','view_event');
|
|
}
|
|
|
|
function html_for_day($event,&$time,$month,$day,$year,&$rowspan,&$rowspan_arr)
|
|
{
|
|
}
|
|
|
|
function print_day($year,$month,$day)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$this->bo->store_to_cache($year,$month,$day,$year,$month,$day + 1);
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_unknowns('keep');
|
|
|
|
$templates = Array(
|
|
'day_cal' => 'day_cal.tpl'
|
|
);
|
|
$p->set_file($templates);
|
|
$p->set_block('day_cal','day','day');
|
|
$p->set_block('day_cal','day_row','day_row');
|
|
$p->set_block('day_cal','day_event','day_event');
|
|
$p->set_block('day_cal','day_time','day_time');
|
|
|
|
if (! $this->bo->prefs['calendar']['workdaystarts'] &&
|
|
! $this->bo->prefs['calendar']['workdayends'])
|
|
{
|
|
|
|
$phpgw->preferences->add('calendar','workdaystarts',8);
|
|
$phpgw->preferences->add('calendar','workdayends',16);
|
|
$phpgw->preferences->save_repository();
|
|
$this->bo->prefs['calendar']['workdaystarts'] = 8;
|
|
$this->bo->prefs['calendar']['workdayends'] = 16;
|
|
}
|
|
|
|
$phpgw->browser->browser();
|
|
$browser_agent = $phpgw->browser->get_agent();
|
|
if($browser_agent == 'MOZILLA')
|
|
{
|
|
$time_width = ($this->bo->prefs['common']['time_format'] == '12'?12:8);
|
|
}
|
|
else
|
|
{
|
|
$time_width = ($this->bo->prefs['common']['time_format'] == '12'?10:7);
|
|
}
|
|
$var = Array(
|
|
'time_width' => $time_width,
|
|
'time_bgcolor' => $phpgw_info['theme']['navbar_bg'],
|
|
'font_color' => $phpgw_info['theme']['bg_text'],
|
|
'time_border_color' => $phpgw_info['theme']['navbar_text'],
|
|
'font' => $phpgw_info['theme']['font']
|
|
);
|
|
|
|
$p->set_var($var);
|
|
|
|
for ($i=0;$i<24;$i++)
|
|
{
|
|
$rowspan_arr[$i] = 0;
|
|
}
|
|
|
|
$events = Array(
|
|
CreateObject('calendar.calendar_item')
|
|
);
|
|
$date_to_eval = sprintf("%04d%02d%02d",$year,$month,$day);
|
|
|
|
$time = Array();
|
|
|
|
$daily = $this->bo->set_week_array($this->bo->datetime->get_weekday_start($year, $month, $day),$phpgw_info['theme']['row_on'],True);
|
|
|
|
if($daily[$date_to_eval]['appts'])
|
|
{
|
|
$events = $this->bo->cached_events[$date_to_eval];
|
|
$c_events = count($events);
|
|
for($i=0;$i<$c_events;$i++)
|
|
{
|
|
$event = $events[$i];
|
|
$ind = intval($event->start->hour);
|
|
|
|
if($ind < (int)$this->bo->prefs['calendar']['workdaystarts'] || $ind > (int)$this->bo->prefs['calendar']['workdayends'])
|
|
{
|
|
$ind = 99;
|
|
}
|
|
|
|
if(!@$time[$ind])
|
|
{
|
|
$time[$ind] = '';
|
|
}
|
|
|
|
$time[$ind] .= $this->link_to_entry($event,$month,$day,$year);
|
|
|
|
$starttime = mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year);
|
|
$endtime = mktime($event->end->hour,$event->end->min,$event->end->sec,$event->end->month,$event->end->mday,$event->end->year);
|
|
|
|
if ($starttime <> $endtime)
|
|
{
|
|
$rowspan = (int)(($endtime - $starttime) / 3600);
|
|
$mins = (int)((($endtime - $starttime) / 60) % 60);
|
|
|
|
if ($mins <> 0)
|
|
{
|
|
$rowspan += 1;
|
|
}
|
|
|
|
if ($rowspan > $rowspan_arr[$ind] && $rowspan > 1)
|
|
{
|
|
$rowspan_arr[$ind] = $rowspan;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// squish events that use the same cell into the same cell.
|
|
// For example, an event from 8:00-9:15 and another from 9:30-9:45 both
|
|
// want to show up in the 8:00-9:59 cell.
|
|
$rowspan = 0;
|
|
$last_row = -1;
|
|
for ($i=0;$i<24;$i++)
|
|
{
|
|
if ($rowspan > 1)
|
|
{
|
|
if (isset($time[$i]) && strlen($time[$i]) > 0)
|
|
{
|
|
$rowspan_arr[$last_row] += $rowspan_arr[$i];
|
|
if ($rowspan_arr[$i] <> 0)
|
|
{
|
|
$rowspan_arr[$last_row] -= 1;
|
|
}
|
|
$time[$last_row] .= $time[$i];
|
|
$time[$i] = '';
|
|
$rowspan_arr[$i] = 0;
|
|
}
|
|
$rowspan--;
|
|
}
|
|
elseif ($rowspan_arr[$i] > 1)
|
|
{
|
|
$rowspan = $rowspan_arr[$i];
|
|
$last_row = $i;
|
|
}
|
|
}
|
|
|
|
$holiday_names = $daily[$date_to_eval]['holidays'];
|
|
if(!$holiday_names)
|
|
{
|
|
$bgcolor = $phpgw->nextmatchs->alternate_row_color();
|
|
}
|
|
else
|
|
{
|
|
$bgcolor = $phpgw_info['theme']['bg04'];
|
|
while(list($index,$name) = each($holiday_names))
|
|
{
|
|
$time[99] = '<center>'.$name.'</center>'.$time[99];
|
|
}
|
|
}
|
|
|
|
if (isset($time[99]) && strlen($time[99]) > 0)
|
|
{
|
|
$var = Array(
|
|
'event' => $time[99],
|
|
'bgcolor' => $bgcolor
|
|
);
|
|
$this->output_template_array($p,'item','day_event',$var);
|
|
|
|
$var = Array(
|
|
'open_link' => '',
|
|
'time' => ' ',
|
|
'close_link' => ''
|
|
);
|
|
$this->output_template_array($p,'item','day_time',$var);
|
|
$p->parse('row','day_row',True);
|
|
$p->set_var('item','');
|
|
}
|
|
$rowspan = 0;
|
|
for ($i=(int)$this->bo->prefs['calendar']['workdaystarts'];$i<=(int)$this->bo->prefs['calendar']['workdayends'];$i++)
|
|
{
|
|
$dtime = $this->bo->build_time_for_display($i * 10000);
|
|
$p->set_var('extras','');
|
|
$p->set_var('event',' ');
|
|
if ($rowspan > 1)
|
|
{
|
|
// this might mean there's an overlap, or it could mean one event
|
|
// ends at 11:15 and another starts at 11:30.
|
|
if (isset($time[$i]) && strlen($time[$i]))
|
|
{
|
|
$p->set_var('event',$time[$i]);
|
|
$p->set_var('bgcolor',$phpgw->nextmatchs->alternate_row_color());
|
|
$p->parse('item','day_event',False);
|
|
}
|
|
$rowspan--;
|
|
}
|
|
elseif (!isset($time[$i]) || !strlen($time[$i]))
|
|
{
|
|
$p->set_var('event',' ');
|
|
$p->set_var('bgcolor',$phpgw->nextmatchs->alternate_row_color());
|
|
$p->parse('item','day_event',False);
|
|
}
|
|
else
|
|
{
|
|
$rowspan = intval($rowspan_arr[$i]);
|
|
if ($rowspan > 1)
|
|
{
|
|
$p->set_var('extras',' rowspan="'.$rowspan.'"');
|
|
}
|
|
$p->set_var('event',$time[$i]);
|
|
$p->set_var('bgcolor',$phpgw->nextmatchs->alternate_row_color());
|
|
$p->parse('item','day_event',False);
|
|
}
|
|
|
|
$open_link = ' - ';
|
|
$close_link = '';
|
|
|
|
if(!$this->bo->printer_friendly && $this->bo->check_perms(PHPGW_ACL_ADD))
|
|
{
|
|
$new_hour = intval(substr($dtime,0,strpos($dtime,':')));
|
|
if ($this->bo->prefs['common']['timeformat'] == '12' && $i > 12)
|
|
{
|
|
$new_hour += 12;
|
|
}
|
|
|
|
$open_link .= '<a href="'.$this->page('add','&date='.$date_to_eval.'&hour='.$new_hour.'&minute='.substr($dtime,strpos($dtime,':')+1,2)).'">';
|
|
|
|
$close_link = '</a>';
|
|
}
|
|
|
|
$var = Array(
|
|
'open_link' => $open_link,
|
|
'time' => (intval(substr($dtime,0,strpos($dtime,':')))<10?'0'.$dtime:$dtime),
|
|
'close_link' => $close_link
|
|
);
|
|
|
|
$this->output_template_array($p,'item','day_time',$var);
|
|
$p->parse('row','day_row',True);
|
|
$p->set_var('event','');
|
|
$p->set_var('item','');
|
|
} // end for
|
|
return $p->fp('out','day');
|
|
} // end function
|
|
|
|
function timematrix($date,$starttime,$endtime,$participants)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if(!isset($this->bo->prefs['calendar']['interval']))
|
|
{
|
|
$this->bo->prefs['calendar']['interval'] = 15;
|
|
$phpgw->preferences->add('calendar','interval',15);
|
|
$phpgw->preferences->save_repository();
|
|
}
|
|
// $increment = $this->bo->prefs['calendar']['interval'];
|
|
$increment = 15;
|
|
$interval = (int)(60 / $increment);
|
|
|
|
$pix = $phpgw->common->image('calendar','pix.gif');
|
|
|
|
$str = '<center>'.lang($phpgw->common->show_date($date['raw'],'l'))
|
|
. ', '.lang($phpgw->common->show_date($date['raw'],'F'))
|
|
. ' '.$phpgw->common->show_date($date['raw'],'d, Y').'<br>'
|
|
. '<table width="85%" border="0" cellspacing="0" cellpadding="0" cols="'.((24 * $interval) + 1).'">'
|
|
. '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>'
|
|
. '<tr><td width="15%"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$phpgw_info['theme']['font'].'" size="-2">'.lang('Participant').'</font></td>';
|
|
for($i=0;$i<24;$i++)
|
|
{
|
|
for($j=0;$j<$interval;$j++)
|
|
{
|
|
switch($j)
|
|
{
|
|
case 0:
|
|
case 1:
|
|
switch($j)
|
|
{
|
|
case 0:
|
|
$pre = '0';
|
|
break;
|
|
case 1:
|
|
$pre = substr(strval($i),0,1);
|
|
break;
|
|
}
|
|
|
|
$k = ($i<=9?$pre:substr($i,$j,$j+1));
|
|
if($increment == 60)
|
|
{
|
|
$k .= substr(strval($i),strlen(strval($i)) - 1,1);
|
|
}
|
|
$str .= '<td align="left" bgcolor="'.$phpgw_info['theme']['bg_color'].'"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$phpgw_info['theme']['font'].'" size="-2">'
|
|
. '<a href="'.$this->page('add','&date='.$date['full'].'&hour='.$i.'&minute='.(interval * $j))."\" onMouseOver=\"window.status='".$i.':'.(($increment * $j)<=9?'0':'').($increment * $j)."'; return true;\">"
|
|
. $k.'</a></font></td>';
|
|
break;
|
|
default:
|
|
$str .= '<td align="left" bgcolor="'.$phpgw_info['theme']['bg_color'].'"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$phpgw_info['theme']['font'].'" size="-2">'
|
|
. '<a href="'.$this->page('add','&date='.$date['full'].'&hour='.$i.'&minute='.(interval * $j))."\" onMouseOver=\"window.status='".$i.':'.($increment * $j)."'; return true;\">"
|
|
. ' </a></font></td>';
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
$str .= '</tr>'
|
|
. '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="black"><img src="'.$pix.'"></td></tr>';
|
|
if(!$endtime)
|
|
{
|
|
$endtime = $starttime;
|
|
}
|
|
$owner = $this->bo->owner;
|
|
while(list($part,$status) = each($participants))
|
|
{
|
|
$str .= '<tr>'
|
|
. '<td width="15%"><font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$phpgw_info['theme']['font'].'" size="-2">'.$this->bo->get_fullname($part).'</font></td>';
|
|
|
|
$this->bo->cached_events = Array();
|
|
$this->bo->owner = $part;
|
|
$this->so->owner = $part;
|
|
$this->bo->store_to_cache($date['year'],$date['month'],$date['day'],0,0,$date['day'] + 1);
|
|
|
|
if(!$this->bo->cached_events[$date['full']])
|
|
{
|
|
for($j=0;$j<24;$j++)
|
|
{
|
|
for($k=0;$k<$interval;$k++)
|
|
{
|
|
$str .= '<td height="1" align="left" bgcolor="'.$phpgw_info['theme']['bg_color'].'" color="#999999"> </td>';
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$time_slice = $this->bo->prepare_matrix($interval,$increment,$part,$status,$date['full']);
|
|
for($h=0;$h<24;$h++)
|
|
{
|
|
$hour = $h * 10000;
|
|
for($m=0;$m<$interval;$m++)
|
|
{
|
|
$index = ($hour + (($m * $increment) * 100));
|
|
switch($time_slice[$index]['marker'])
|
|
{
|
|
case ' ':
|
|
$time_slice[$index]['color'] = $phpgw_info['theme']['bg_color'];
|
|
break;
|
|
case '-':
|
|
$time_slice[$index]['color'] = $phpgw_info['theme']['bg01'];
|
|
break;
|
|
}
|
|
$str .= '<td height="1" align="left" bgcolor="'.$time_slice[$index]['color']."\" color=\"#999999\" onMouseOver=\"window.status='".$time_slice[$index]['description']."'; return true;\">".'<font color="'.$phpgw_info['theme']['bg_text'].'" face="'.$phpgw_info['theme']['font'].'" size="-2">'.$time_slice[$index]['marker'].'</font></td>';
|
|
}
|
|
}
|
|
}
|
|
$str .= '</tr>'
|
|
. '<tr><td height="1" colspan="'.((24 * $interval) + 1).'" bgcolor="#999999"><img src="'.$pix.'"></td></tr>';
|
|
}
|
|
$this->bo->owner = $owner;
|
|
$this->so->owner = $owner;
|
|
return $str.'</table></center>'."\n";
|
|
}
|
|
|
|
function get_response($cal_id)
|
|
{
|
|
global $phpgw;
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'form_button' => 'form_button_script.tpl'
|
|
)
|
|
);
|
|
|
|
$response_choices = Array(
|
|
ACCEPTED => lang('Accept'),
|
|
REJECTED => lang('Reject'),
|
|
TENTATIVE => lang('Tentative'),
|
|
NO_RESPONSE => lang('No Response')
|
|
);
|
|
$str = '';
|
|
while(list($param,$text) = each($response_choices))
|
|
{
|
|
$var = Array(
|
|
'action_url_button' => $this->page('set_action',Array('cal_id'=>$cal_id,'action'=>$param)),
|
|
'action_text_button' => ' '.$text.' ',
|
|
'action_confirm_button' => '',
|
|
'action_extra_field' => ''
|
|
);
|
|
$p->set_var($var);
|
|
$str .= '<td>'.$p->fp('out','form_button').'</td>'."\n";
|
|
}
|
|
return '<table width="100%" cols="4"><tr align="center">'."\n".$str.'</tr></table>'."\n";
|
|
}
|
|
|
|
function edit_form($event)
|
|
{
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$hourformat = substr($this->bo->users_timeformat,0,1);
|
|
|
|
$sb = CreateObject('phpgwapi.sbox');
|
|
|
|
$start = mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year) - $this->bo->datetime->tz_offset;
|
|
$end = mktime($event->end->hour,$event->end->min,$event->end->sec,$event->end->month,$event->end->mday,$event->end->year) - $this->bo->datetime->tz_offset;
|
|
|
|
unset($phpgw_info['flags']['noheader']);
|
|
unset($phpgw_info['flags']['nonavbar']);
|
|
$phpgw_info['flags']['noappheader'] = True;
|
|
$phpgw_info['flags']['noappfooter'] = True;
|
|
$phpgw->common->phpgw_header();
|
|
|
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
|
$p->set_file(
|
|
Array(
|
|
'edit' => 'edit.tpl',
|
|
'form_button' => 'form_button_script.tpl'
|
|
)
|
|
);
|
|
$p->set_block('edit','edit_entry','edit_entry');
|
|
$p->set_block('edit','list','list');
|
|
$p->set_block('edit','hr','hr');
|
|
|
|
$vars = Array(
|
|
'font' => $phpgw_info['theme']['font'],
|
|
'bg_color' => $phpgw_info['theme']['bg_text'],
|
|
'calendar_action' => ($event->id?lang('Calendar - Edit'):lang('Calendar - Add')),
|
|
/* 'action_url' => $phpgw->link('/index.php','menuaction=calendar.bocalendar.'.($event->id?'update':'add')), */
|
|
'action_url' => $phpgw->link('/index.php','menuaction=calendar.bocalendar.update'),
|
|
'common_hidden' => '<input type="hidden" name="cal[id]" value="'.$event->id.'">'."\n"
|
|
. '<input type="hidden" name="cal[owner]" value="'.$this->bo->owner.'">'."\n",
|
|
'errormsg' => ($cd?$phpgw->common->check_code($cd):'')
|
|
);
|
|
$p->set_var($vars);
|
|
|
|
// Brief Description
|
|
$var[] = Array(
|
|
'field' => lang('Title'),
|
|
'data' => '<input name="cal[title]" size="25" maxlength="80" value="'.$event->title.'">'
|
|
);
|
|
|
|
// Full Description
|
|
$var[] = Array(
|
|
'field' => lang('Full Description'),
|
|
'data' => '<textarea name="cal[description]" rows="5" cols="40" wrap="virtual" maxlength="2048">'.$event->description.'</textarea>'
|
|
);
|
|
|
|
// Display Categories
|
|
$var[] = Array(
|
|
'field' => lang('Category'),
|
|
'data' => '<select name="cal[category]"><option value="">'.lang('Choose the category').'</option>'.$this->cat->formated_list('select','all',$event->category,True).'</select>'
|
|
);
|
|
|
|
// Date
|
|
$var[] = Array(
|
|
'field' => lang('Start Date'),
|
|
'data' => $phpgw->common->dateformatorder(
|
|
$sb->getYears('start[year]',intval($phpgw->common->show_date($start,'Y')),intval($phpgw->common->show_date($start,'Y'))),
|
|
$sb->getMonthText('start[month]',intval($phpgw->common->show_date($start,'n'))),
|
|
$sb->getDays('start[mday]',intval($phpgw->common->show_date($start,'d')))
|
|
)
|
|
);
|
|
|
|
// Time
|
|
if ($this->bo->prefs['common']['timeformat'] == '12')
|
|
{
|
|
$str .= '<input type="radio" name="start[ampm]" value="am"'.($event->start->hour >= 12?'':' checked').'>am'."\n"
|
|
. '<input type="radio" name="start[ampm]" value="pm"'.($event->start->hour >= 12?' checked':'').'>pm'."\n";
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang('Start Time'),
|
|
'data' => '<input name="start[hour]" size="2" VALUE="'.$phpgw->common->show_date($start,$hourformat).'" maxlength="2">:<input name="start[min]" size="2" value="'.$phpgw->common->show_date($start,'i').'" maxlength="2">'."\n".$str
|
|
);
|
|
|
|
// End Date
|
|
$var[] = Array(
|
|
'field' => lang('End Date'),
|
|
'data' => $phpgw->common->dateformatorder(
|
|
$sb->getYears('end[year]',intval($phpgw->common->show_date($end,'Y')),intval($phpgw->common->show_date($end,'Y'))),
|
|
$sb->getMonthText('end[month]',intval($phpgw->common->show_date($end,'n'))),
|
|
$sb->getDays('end[mday]',intval($phpgw->common->show_date($end,'d')))
|
|
)
|
|
);
|
|
|
|
// End Time
|
|
if ($this->bo->prefs['common']['timeformat'] == '12')
|
|
{
|
|
$str = '<input type="radio" name="end[ampm]" value="am"'.($event->end->hour >= 12?'':' checked').'>am'."\n"
|
|
. '<input type="radio" name="end[ampm]" value="pm"'.($event->end->hour >= 12?' checked':'').'>pm'."\n";
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang("End Time"),
|
|
'data' => '<input name="end[hour]" size="2" VALUE="'.$phpgw->common->show_date($end,$hourformat).'" maxlength="2">:<input name="end[min]" size="2" value="'.$phpgw->common->show_date($end,'i').'" maxlength="2">'."\n".$str
|
|
);
|
|
|
|
// Priority
|
|
$var[] = Array(
|
|
'field' => lang('Priority'),
|
|
'data' => $sb->getPriority('cal[priority]',$event->priority)
|
|
);
|
|
|
|
// Access
|
|
$var[] = Array(
|
|
'field' => lang('Private'),
|
|
'data' => '<input type="checkbox" name="cal[private]" value="private"'.(!$event->public?' checked':'').'>'
|
|
);
|
|
|
|
// Participants
|
|
$accounts = $phpgw->acl->get_ids_for_location('run',1,'calendar');
|
|
$users = Array();
|
|
$this->build_part_list($users,$accounts,$owner);
|
|
|
|
$str = '';
|
|
@asort($users);
|
|
@reset($users);
|
|
while (list($id,$name) = each($users))
|
|
{
|
|
if(intval($id) != intval($this->bo->owner))
|
|
{
|
|
$str .= ' <option value="' . $id . '"'.($event->participants[$id]?' selected':'').'>('.$phpgw->accounts->get_type($id).') '.$name.'</option>'."\n";
|
|
}
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang('Participants'),
|
|
'data' => "\n".' <select name="participants[]" multiple size="5">'."\n".$str.' </select>'
|
|
);
|
|
|
|
// I Participate
|
|
if((($cal_id > 0) && isset($event->participants[$this->bo->owner])) || !isset($cal_id))
|
|
{
|
|
$checked = ' checked';
|
|
}
|
|
else
|
|
{
|
|
$checked = '';
|
|
}
|
|
$var[] = Array(
|
|
'field' => $phpgw->common->grab_owner_name($this->bo->owner).' '.lang('Participates'),
|
|
'data' => '<input type="checkbox" name="participants[]" value="'.$this->bo->owner.'"'.$checked.'>'
|
|
);
|
|
|
|
for($i=0;$i<count($var);$i++)
|
|
{
|
|
$this->output_template_array($p,'row','list',$var[$i]);
|
|
}
|
|
|
|
unset($var);
|
|
|
|
// Repeat Type
|
|
$p->set_var('hr_text','<hr>');
|
|
$p->parse('row','hr',True);
|
|
$p->set_var('hr_text','<center><b>'.lang('Repeating Event Information').'</b></center><br>');
|
|
$p->parse('row','hr',True);
|
|
$rpt_type = Array(
|
|
MCAL_RECUR_NONE,
|
|
MCAL_RECUR_DAILY,
|
|
MCAL_RECUR_WEEKLY,
|
|
MCAL_RECUR_MONTHLY_WDAY,
|
|
MCAL_RECUR_MONTHLY_MDAY,
|
|
MCAL_RECUR_YEARLY
|
|
);
|
|
$rpt_type_out = Array(
|
|
MCAL_RECUR_NONE => 'None',
|
|
MCAL_RECUR_DAILY => 'Daily',
|
|
MCAL_RECUR_WEEKLY => 'Weekly',
|
|
MCAL_RECUR_MONTHLY_WDAY => 'Monthly (by day)',
|
|
MCAL_RECUR_MONTHLY_MDAY => 'Monthly (by date)',
|
|
MCAL_RECUR_YEARLY => 'Yearly'
|
|
);
|
|
$str = '';
|
|
for($l=0;$l<count($rpt_type);$l++)
|
|
{
|
|
$str .= '<option value="'.$rpt_type[$l].'"'.($event->recur_type==$rpt_type[$l]?' selected':'').'>'.lang($rpt_type_out[$rpt_type[$l]]).'</option>';
|
|
}
|
|
$var[] = Array(
|
|
'field' => lang('Repeat Type'),
|
|
'data' => '<select name="cal[recur_type]">'."\n".$str.'</select>'."\n"
|
|
);
|
|
|
|
if($event->recur_enddate->year != 0 && $event->recur_enddate->month != 0 && $event->recur_enddate->mday != 0)
|
|
{
|
|
$checked = ' checked';
|
|
$recur_end = mktime($event->recur_enddate->hour,$event->recur_enddate->min,$event->recur_enddate->sec,$event->recur_enddate->month,$event->recur_enddate->mday,$event->recur_enddate->year) - $this->bo->datetime->tz_offset;
|
|
}
|
|
else
|
|
{
|
|
$checked = '';
|
|
$recur_end = mktime($event->start->hour,$event->start->min,$event->start->sec,$event->start->month,$event->start->mday,$event->start->year) + 86400 - $this->bo->datetime->tz_offset;
|
|
}
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Repeat End Date'),
|
|
'data' => '<input type="checkbox" name="cal[rpt_use_end]" value="y"'.$checked.'>'.lang('Use End Date').' '
|
|
.$phpgw->common->dateformatorder(
|
|
$sb->getYears('recur_enddate[year]',intval($phpgw->common->show_date($recur_end,'Y')),intval($phpgw->common->show_date($recur_end,'Y'))),
|
|
$sb->getMonthText('recur_enddate[month]',intval($phpgw->common->show_date($recur_end,'n'))),
|
|
$sb->getDays('recur_enddate[mday]',intval($phpgw->common->show_date($recur_end,'d')))
|
|
)
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Repeat Day').'<br>'.lang('(for weekly)'),
|
|
'data' => '<input type="checkbox" name="cal[rpt_sun]" value="'.MCAL_M_SUNDAY.'"'.(($event->recur_data & MCAL_M_SUNDAY) ?' checked':'').'> '.lang('Sunday').' '
|
|
. '<input type="checkbox" name="cal[rpt_mon]" value="'.MCAL_M_MONDAY.'"'.(($event->recur_data & MCAL_M_MONDAY) ?' checked':'').'> '.lang('Monday').' '
|
|
. '<input type="checkbox" name="cal[rpt_tue]" value="'.MCAL_M_TUESDAY.'"'.(($event->recur_data & MCAL_M_TUESDAY) ?' checked':'').'> '.lang('Tuesday').' '
|
|
. '<input type="checkbox" name="cal[rpt_wed]" value="'.MCAL_M_WEDNESDAY.'"'.(($event->recur_data & MCAL_M_WEDNESDAY) ?' checked':'').'> '.lang('Wednesday').' <br>'
|
|
. '<input type="checkbox" name="cal[rpt_thu]" value="'.MCAL_M_THURSDAY.'"'.(($event->recur_data & MCAL_M_THURSDAY) ?' checked':'').'> '.lang('Thursday').' '
|
|
. '<input type="checkbox" name="cal[rpt_fri]" value="'.MCAL_M_FRIDAY.'"'.(($event->recur_data & MCAL_M_FRIDAY) ?' checked':'').'> '.lang('Friday').' '
|
|
. '<input type="checkbox" name="cal[rpt_sat]" value="'.MCAL_M_SATURDAY.'"'.(($event->recur_data & MCAL_M_SATURDAY) ?' checked':'').'> '.lang('Saturday').' '
|
|
);
|
|
|
|
$var[] = Array(
|
|
'field' => lang('Frequency'),
|
|
'data' => '<input name="cal[recur_interval]" size="4" maxlength="4" value="'.$event->recur_interval.'">'
|
|
);
|
|
|
|
for($i=0;$i<count($var);$i++)
|
|
{
|
|
$this->output_template_array($p,'row','list',$var[$i]);
|
|
}
|
|
|
|
$p->set_var('submit_button',lang('Submit'));
|
|
|
|
if ($cal_id > 0)
|
|
{
|
|
$var = Array(
|
|
'action_url_button' => $this->page('delete','&cal_id='.$cal_id),
|
|
'action_text_button' => lang('Delete'),
|
|
'action_confirm_button' => "onClick=\"return confirm('".lang("Are you sure\\nyou want to \\ndelete this entry?\\n\\nThis will delete\\nthis entry for all users.")."')\"",
|
|
'action_extra_field' => ''
|
|
);
|
|
$p->set_var($var);
|
|
$p->parse('delete_button','form_button');
|
|
}
|
|
else
|
|
{
|
|
$p->set_var('delete_button','');
|
|
}
|
|
$p->pparse('out','edit_entry');
|
|
}
|
|
|
|
function build_part_list(&$users,$accounts,$owner)
|
|
{
|
|
global $phpgw;
|
|
if($accounts == False)
|
|
{
|
|
return;
|
|
}
|
|
while(list($index,$id) = each($accounts))
|
|
{
|
|
if(intval($id) == $owner)
|
|
{
|
|
continue;
|
|
}
|
|
if(!isset($users[intval($id)]))
|
|
{
|
|
if($phpgw->accounts->exists(intval($id)) == True)
|
|
{
|
|
$users[intval($id)] = $phpgw->common->grab_owner_name(intval($id));
|
|
}
|
|
if($phpgw->accounts->get_type(intval($id)) == 'g')
|
|
{
|
|
$this->build_part_list($users,$phpgw->acl->get_ids_for_location(intval($id),1,'phpgw_group'),$owner);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|