mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Updating some of the files to include Ralf Beckers fixes. Still Need to talk with him in regards to a few he has submited.
This commit is contained in:
parent
b0364b9491
commit
1ac3fcb9a7
@ -117,15 +117,14 @@
|
||||
var $modified;
|
||||
var $deleted;
|
||||
var $added;
|
||||
|
||||
var $is_group = False;
|
||||
|
||||
var $soap = False;
|
||||
|
||||
var $use_session = False;
|
||||
|
||||
var $today;
|
||||
|
||||
var $sortby;
|
||||
var $num_months;
|
||||
|
||||
function bocalendar($session=0)
|
||||
{
|
||||
$this->grants = $GLOBALS['phpgw']->acl->get_grants('calendar');
|
||||
@ -192,6 +191,7 @@
|
||||
$this->printer_friendly = (intval(get_var('friendly',Array('HTTP_GET_VARS','HTTP_POST_VARS','DEFAULT'),0)) == 1?True:False);
|
||||
|
||||
$this->filter = get_var('filter',Array('HTTP_POST_VARS','DEFAULT'),' '.$this->prefs['calendar']['defaultfilter'].' ');
|
||||
$this->sortby = get_var('sortby',Array('HTTP_POST_VARS'));
|
||||
$this->cat_id = get_var('cat_id',Array('HTTP_POST_VARS'));
|
||||
|
||||
$this->so = CreateObject('calendar.socalendar',
|
||||
@ -208,6 +208,7 @@
|
||||
$year = get_var('year',Array('HTTP_GET_VARS','HTTP_POST_VARS'));
|
||||
$month = get_var('month',Array('HTTP_GET_VARS','HTTP_POST_VARS'));
|
||||
$day = get_var('day',Array('HTTP_GET_VARS','HTTP_POST_VARS'));
|
||||
$num_months = get_var('num_months',Array('HTTP_GET_VARS','HTTP_POST_VARS'));
|
||||
|
||||
if(isset($date) && $date!='')
|
||||
{
|
||||
@ -221,7 +222,7 @@
|
||||
{
|
||||
$this->year = $year;
|
||||
}
|
||||
elseif($this->year == 0)
|
||||
else // if($this->year == 0)
|
||||
{
|
||||
$this->year = date('Y',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
}
|
||||
@ -229,7 +230,7 @@
|
||||
{
|
||||
$this->month = $month;
|
||||
}
|
||||
elseif($this->month == 0)
|
||||
else // if($this->month == 0)
|
||||
{
|
||||
$this->month = date('m',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
}
|
||||
@ -237,12 +238,22 @@
|
||||
{
|
||||
$this->day = $day;
|
||||
}
|
||||
elseif($this->day == 0)
|
||||
else // if($this->day == 0)
|
||||
{
|
||||
$this->day = date('d',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
}
|
||||
}
|
||||
|
||||
if(isset($num_months) && $num_months!='')
|
||||
{
|
||||
$this->num_months = $num_months;
|
||||
}
|
||||
elseif($this->num_months == 0)
|
||||
{
|
||||
$this->num_months = 1;
|
||||
}
|
||||
|
||||
|
||||
$this->today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
|
||||
if($this->debug)
|
||||
@ -355,10 +366,7 @@
|
||||
{
|
||||
if ($this->use_session)
|
||||
{
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- '."\n".'Save:'."\n"._debug_array($data,False)."\n".' -->'."\n";
|
||||
}
|
||||
print_debug('Save',_debug_array($data,False));
|
||||
$GLOBALS['phpgw']->session->appsession('session_data','calendar',$data);
|
||||
}
|
||||
}
|
||||
@ -366,17 +374,16 @@
|
||||
function read_sessiondata()
|
||||
{
|
||||
$data = $GLOBALS['phpgw']->session->appsession('session_data','calendar');
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- '."\n".'Read:'."\n"._debug_array($data,False)."\n".' -->'."\n";
|
||||
}
|
||||
print_debug('Read',_debug_array($data,False));
|
||||
|
||||
$this->filter = $data['filter'];
|
||||
$this->cat_id = $data['cat_id'];
|
||||
$this->sortby = $data['sortby'];
|
||||
$this->owner = intval($data['owner']);
|
||||
$this->year = intval($data['year']);
|
||||
$this->month = intval($data['month']);
|
||||
$this->day = intval($data['day']);
|
||||
$this->num_months = intval($data['num_months']);
|
||||
}
|
||||
|
||||
function read_entry($id)
|
||||
@ -401,16 +408,13 @@
|
||||
{
|
||||
$temp_event = $this->get_cached_event();
|
||||
$event = $this->read_entry(intval($param['id']));
|
||||
if($this->owner == $event['owner'])
|
||||
{
|
||||
// if($this->owner == $event['owner'])
|
||||
// {
|
||||
$exception_time = mktime($event['start']['hour'],$event['start']['min'],0,$param['month'],$param['day'],$param['year']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$event['recur_exception'][] = intval($exception_time);
|
||||
$this->so->cal->event = $event;
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- exception time = '.$event['recur_exception'][count($event['recur_exception']) -1].' -->'."\n";
|
||||
echo '<!-- count event exceptions = '.count($event['recur_exception']).' -->'."\n";
|
||||
}
|
||||
print_debug('exception time',$event['recur_exception'][count($event['recur_exception']) -1]);
|
||||
print_debug('count event exceptions',count($event['recur_exception']));
|
||||
$this->so->add_entry($event);
|
||||
$cd = 16;
|
||||
}
|
||||
@ -418,7 +422,7 @@
|
||||
{
|
||||
$cd = 60;
|
||||
}
|
||||
}
|
||||
// }
|
||||
$this->so->cal->event = $temp_event;
|
||||
unset($temp_event);
|
||||
return $cd;
|
||||
@ -429,8 +433,8 @@
|
||||
if($this->check_perms(PHPGW_ACL_DELETE))
|
||||
{
|
||||
$temp_event = $this->read_entry($id);
|
||||
if($this->owner == $temp_event['owner'])
|
||||
{
|
||||
// if($this->owner == $temp_event['owner'])
|
||||
// {
|
||||
$this->so->delete_entry($id);
|
||||
$cd = 16;
|
||||
}
|
||||
@ -438,7 +442,7 @@
|
||||
{
|
||||
$cd = 60;
|
||||
}
|
||||
}
|
||||
// }
|
||||
return $cd;
|
||||
}
|
||||
|
||||
@ -448,35 +452,23 @@
|
||||
{
|
||||
$event = $this->so->read_entry($params['cal_id']);
|
||||
@reset($params['reinstate_index']);
|
||||
echo '<!-- Count of reinstate_index = '.count($params['reinstate_index']).' -->'."\n";
|
||||
print_debug('Count of reinstate_index',count($params['reinstate_index']));
|
||||
if(count($params['reinstate_index']) > 1)
|
||||
{
|
||||
while(list($key,$value) = each($params['reinstate_index']))
|
||||
{
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- reinstate_index ['.$key.'] = '.intval($value).' -->'."\n";
|
||||
echo '<!-- exception time = '.$event['recur_exception'][intval($value)].' -->'."\n";
|
||||
}
|
||||
print_debug('reinstate_index ['.$key.']',intval($value));
|
||||
print_debug('exception time',$event['recur_exception'][intval($value)]);
|
||||
unset($event['recur_exception'][intval($value)]);
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- count event exceptions = '.count($event['recur_exception']).' -->'."\n";
|
||||
}
|
||||
print_debug('count event exceptions',count($event['recur_exception']));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- reinstate_index [0] = '.intval($params['reinstate_index'][0]).' -->'."\n";
|
||||
echo '<!-- exception time = '.$event['recur_exception'][intval($params['reinstate_index'][0])].' -->'."\n";
|
||||
}
|
||||
print_debug('reinstate_index[0]',intval($params['reinstate_index'][0]));
|
||||
print_debug('exception time',$event['recur_exception'][intval($params['reinstate_index'][0])]);
|
||||
unset($event['recur_exception'][intval($params['reinstate_index'][0])]);
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- count event exceptions = '.count($event['recur_exception']).' -->'."\n";
|
||||
}
|
||||
print_debug('count event exceptions',count($event['recur_exception']));
|
||||
}
|
||||
$this->so->cal->event = $event;
|
||||
$this->so->add_entry($event);
|
||||
@ -654,14 +646,20 @@
|
||||
$part = Array();
|
||||
for($i=0;$i<count($parts);$i++)
|
||||
{
|
||||
if (($accept_type = substr($parts[$i],-1,1)) == '0' || intval($accept_type) > 0)
|
||||
{
|
||||
$accept_type = 'U';
|
||||
}
|
||||
$acct_type = $GLOBALS['phpgw']->accounts->get_type(intval($parts[$i]));
|
||||
if($acct_type == 'u')
|
||||
{
|
||||
$part[$parts[$i]] = 1;
|
||||
// $part[$parts[$i]] = 1;
|
||||
$part[intval($parts[$i])] = $accept_type;
|
||||
}
|
||||
elseif($acct_type == 'g')
|
||||
{
|
||||
$part[$parts[$i]] = 1;
|
||||
// $part[$parts[$i]] = 1;
|
||||
$part[intval($parts[$i])] = $accept_type;
|
||||
$groups[] = $parts[$i];
|
||||
/* This pulls ALL users of a group and makes them as participants to the event */
|
||||
/* I would like to turn this back into a group thing. */
|
||||
@ -674,7 +672,8 @@
|
||||
}
|
||||
while($member = each($members))
|
||||
{
|
||||
$part[$member[1]['account_id']] = 1;
|
||||
// $part[$member[1]['account_id']] = 1;
|
||||
+ $part[$member[1]['account_id']] = $accept_type;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -687,9 +686,9 @@
|
||||
if($part)
|
||||
{
|
||||
@reset($part);
|
||||
while(list($key,$value) = each($part))
|
||||
while(list($key,$accept_type) = each($part))
|
||||
{
|
||||
$this->so->add_attribute('participants','U',intval($key));
|
||||
$this->so->add_attribute('participants',$accept_type,intval($key));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,13 +15,8 @@
|
||||
|
||||
class html
|
||||
{
|
||||
var $prefered_img_title;
|
||||
|
||||
function html()
|
||||
{
|
||||
global $HTTP_USER_AGENT;
|
||||
// should be Ok for all HTML 4 compatible browsers
|
||||
$this->prefered_img_title = stristr($HTTP_USER_AGENT,'konqueror') ? 'title' : 'alt';
|
||||
}
|
||||
|
||||
function input_hidden($vars,$value='')
|
||||
@ -145,7 +140,7 @@ class html
|
||||
|
||||
if ($title)
|
||||
{
|
||||
$html .= " $this->prefered_img_title=\"$title\"";
|
||||
$html .= " alt=\"$title\" title=\"$title\"";
|
||||
}
|
||||
if ($opts)
|
||||
{
|
||||
|
@ -495,7 +495,8 @@ class socalendar_ extends socalendar__
|
||||
@reset($event['participants']);
|
||||
while (list($key,$value) = @each($event['participants']))
|
||||
{
|
||||
if(intval($key) == intval($this->user))
|
||||
// if(intval($key) == intval($this->user))
|
||||
if(intval($key) == $event['owner'])
|
||||
{
|
||||
$value = 'A';
|
||||
}
|
||||
|
@ -222,12 +222,12 @@
|
||||
);
|
||||
$this->output_template_array($p,'daynames','mini_day',$var);
|
||||
}
|
||||
$today = date('Ymd',$GLOBALS['phpgw']->datetime->gmtnow + $GLOBALS['phpgw']->datetme->tz_offset);
|
||||
$today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
unset($date);
|
||||
for($i=$weekstarttime + $GLOBALS['phpgw']->datetme->tz_offset;date('Ymd',$i)<=$monthend;$i += (24 * 3600 * 7))
|
||||
for($i=$weekstarttime + $GLOBALS['phpgw']->datetime->tz_offset;date('Ymd',$i)<=$monthend;$i += (24 * 3600 * 7))
|
||||
{
|
||||
unset($var);
|
||||
$daily = $this->set_week_array($i - $GLOBALS['phpgw']->datetme->tz_offset,$cellcolor,$weekly);
|
||||
$daily = $this->set_week_array($i - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
|
||||
@reset($daily);
|
||||
while(list($date,$day_params) = each($daily))
|
||||
{
|
||||
@ -515,7 +515,7 @@
|
||||
}
|
||||
|
||||
$now = $GLOBALS['phpgw']->datetime->makegmttime(0, 0, 0, $this->bo->month, $this->bo->day, $this->bo->year);
|
||||
$now['raw'] += $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$now['raw'] += $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$m = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
|
||||
|
||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||
@ -655,7 +655,7 @@
|
||||
$this->bo->repeating_events = Array();
|
||||
$this->bo->cached_events = Array();
|
||||
$this->bo->repeating_events[0] = $event;
|
||||
$datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$this->bo->check_repeating_events($datetime);
|
||||
$check_date = $GLOBALS['phpgw']->common->show_date($datetime,'Ymd');
|
||||
if(is_array($this->bo->cached_events[$check_date][0]) &&
|
||||
@ -1163,7 +1163,7 @@
|
||||
}
|
||||
|
||||
$now = $GLOBALS['phpgw']->datetime->makegmttime(0, 0, 0, $this->bo->month, $this->bo->day, $this->bo->year);
|
||||
$now['raw'] += $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$now['raw'] += $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$m = mktime(0,0,0,$this->bo->month,1,$this->bo->year);
|
||||
|
||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||
@ -1220,7 +1220,7 @@
|
||||
return;
|
||||
}
|
||||
|
||||
$freetime = $GLOBALS['phpgw']->datetime->localdates(mktime(0,0,0,$event['start']['month'],$event['start']['mday'],$event['start']['year']) - $GLOBALS['phpgw']->datetme->tz_offset);
|
||||
$freetime = $GLOBALS['phpgw']->datetime->localdates(mktime(0,0,0,$event['start']['month'],$event['start']['mday'],$event['start']['year']) - $GLOBALS['phpgw']->datetime->tz_offset);
|
||||
echo $this->timematrix(
|
||||
Array(
|
||||
'date' => $freetime,
|
||||
@ -1279,9 +1279,9 @@
|
||||
23 => 2
|
||||
);
|
||||
|
||||
$startdate = mktime(0,0,0,$this->bo->month,1,$this->bo->year) - $GLOBALS[\'phpgw\']->datetme->tz_offset;
|
||||
$startdate = mktime(0,0,0,$this->bo->month,1,$this->bo->year) - $GLOBALS[\'phpgw\']->datetime->tz_offset;
|
||||
$days = $GLOBALS[\'phpgw\']->datetime->days_in_month($this->bo->month,$this->bo->year);
|
||||
$enddate = mktime(23,59,59,$this->bo->month,$this->bo->days,$this->bo->year) - $GLOBALS[\'phpgw\']->datetme->tz_offset;
|
||||
$enddate = mktime(23,59,59,$this->bo->month,$this->bo->days,$this->bo->year) - $GLOBALS[\'phpgw\']->datetime->tz_offset;
|
||||
|
||||
$header[] = lang(\'Category\');
|
||||
for ($d = 1; $d <= $days; $d++)
|
||||
@ -1445,7 +1445,7 @@
|
||||
|
||||
function matrixselect()
|
||||
{
|
||||
$datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$datetime = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
|
||||
$sb = CreateObject('phpgwapi.sbox');
|
||||
|
||||
@ -1681,7 +1681,7 @@
|
||||
{
|
||||
$event = $this->bo->read_entry($id);
|
||||
|
||||
$datetime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$datetime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
|
||||
$ids[strval($event['id'])]++;
|
||||
$info[strval($event['id'])] = $GLOBALS['phpgw']->common->show_date($datetime).$this->link_to_entry($event,$event['start']['month'],$event['start']['mday'],$event['start']['year']);
|
||||
@ -1755,7 +1755,9 @@
|
||||
'owner' => $this->bo->owner,
|
||||
'year' => $this->bo->year,
|
||||
'month' => $this->bo->month,
|
||||
'day' => $this->bo->day
|
||||
'day' => $this->bo->day,
|
||||
'sortby' => $this->bo->sortby,
|
||||
'num_months' => $this->bo->num_months
|
||||
);
|
||||
echo '<br>UI:';
|
||||
_debug_array($data);
|
||||
@ -1770,13 +1772,20 @@
|
||||
'owner' => $this->bo->owner,
|
||||
'year' => $this->bo->year,
|
||||
'month' => $this->bo->month,
|
||||
'day' => $this->bo->day
|
||||
'day' => $this->bo->day,
|
||||
'date' => $this->bo->date,
|
||||
'sortby' => $this->bo->sortby,
|
||||
'num_months' => $this->bo->num_months
|
||||
);
|
||||
$this->bo->save_sessiondata($data);
|
||||
}
|
||||
|
||||
function output_template_array(&$p,$row,$list,$var)
|
||||
{
|
||||
if (!isset($var['hidden_vars']))
|
||||
{
|
||||
$var['hidden_vars'] = '';
|
||||
}
|
||||
$p->set_var($var);
|
||||
$p->parse($row,$list,True);
|
||||
}
|
||||
@ -1875,8 +1884,8 @@
|
||||
$this->output_template_array($p,'table_row','footer_row',$var);
|
||||
|
||||
unset($thisdate);
|
||||
$thisdate = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$sun = $GLOBALS['phpgw']->datetime->get_weekday_start($this->bo->year,$this->bo->month,$this->bo->day) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$thisdate = mktime(0,0,0,$this->bo->month,$this->bo->day,$this->bo->year) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$sun = $GLOBALS['phpgw']->datetime->get_weekday_start($this->bo->year,$this->bo->month,$this->bo->day) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
|
||||
$str = '';
|
||||
for ($i = -7; $i <= 7; $i++)
|
||||
@ -1980,11 +1989,11 @@
|
||||
$is_private = $this->bo->is_private($event,$event['owner']);
|
||||
$editable = ((!$this->bo->printer_friendly) && (($is_private && $this->bo->check_perms(PHPGW_ACL_PRIVATE)) || !$is_private));
|
||||
|
||||
$starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$starttime = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$endtime = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$rawdate = mktime(0,0,0,$month,$day,$year);
|
||||
$rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$rawdate_offset = $rawdate - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$nextday = mktime(0,0,0,$month,$day + 1,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
if (intval($GLOBALS['phpgw']->common->show_date($starttime,'Hi')) && $starttime == $endtime)
|
||||
{
|
||||
$time = $GLOBALS['phpgw']->common->show_date($starttime,$this->bo->users_timeformat);
|
||||
@ -2006,7 +2015,7 @@
|
||||
|
||||
if($endtime >= ($rawdate_offset + 86400))
|
||||
{
|
||||
$end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetme->tz_offset,$this->bo->users_timeformat);
|
||||
$end_time = $GLOBALS['phpgw']->common->show_date(mktime(23,59,59,$month,$day,$year) - $GLOBALS['phpgw']->datetime->tz_offset,$this->bo->users_timeformat);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -2134,8 +2143,8 @@
|
||||
$mday = $event['start']['mday'];
|
||||
$year = $event['start']['year'];
|
||||
|
||||
$start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$start = mktime($event['start']['hour'],$event['start']['min'],$event['start']['sec'],$month,$mday,$year) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
|
||||
$overlap = '';
|
||||
for($i=0;$i<count($overlapping_events);$i++)
|
||||
@ -2308,7 +2317,6 @@
|
||||
}
|
||||
|
||||
$temp_owner = $this->bo->owner;
|
||||
// $this->bo->owner = $owner;
|
||||
|
||||
$str = '';
|
||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||
@ -2335,7 +2343,7 @@
|
||||
$p->set_var('col_width','12');
|
||||
}
|
||||
$today = date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime);
|
||||
$daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetme->tz_offset,$cellcolor,$weekly);
|
||||
$daily = $this->set_week_array($startdate - $GLOBALS['phpgw']->datetime->tz_offset,$cellcolor,$weekly);
|
||||
@reset($daily);
|
||||
while(list($date,$day_params) = each($daily))
|
||||
{
|
||||
@ -2471,7 +2479,7 @@
|
||||
|
||||
$cellcolor = $this->theme['row_on'];
|
||||
|
||||
for ($i=intval($start + $GLOBALS['phpgw']->datetme->tz_offset);intval(date('Ymd',$i)) <= $monthend;$i += 604800)
|
||||
for ($i=intval($start + $GLOBALS['phpgw']->datetime->tz_offset);intval(date('Ymd',$i)) <= $monthend;$i += 604800)
|
||||
{
|
||||
$cellcolor = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($cellcolor);
|
||||
$var = Array(
|
||||
@ -2640,12 +2648,12 @@
|
||||
}
|
||||
$var[] = Array(
|
||||
'field' => lang('Start Date/Time'),
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetme->tz_offset)
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset)
|
||||
);
|
||||
|
||||
$var[] = Array(
|
||||
'field' => lang('End Date/Time'),
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetme->tz_offset)
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset)
|
||||
);
|
||||
|
||||
$var[] = Array(
|
||||
@ -2660,7 +2668,7 @@
|
||||
|
||||
$var[] = Array(
|
||||
'field' => lang('Updated'),
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['modtime']) - $GLOBALS['phpgw']->datetme->tz_offset)
|
||||
'data' => $GLOBALS['phpgw']->common->show_date($this->bo->maketime($event['modtime']) - $GLOBALS['phpgw']->datetime->tz_offset)
|
||||
);
|
||||
|
||||
$var[] = Array(
|
||||
@ -2717,7 +2725,7 @@
|
||||
$recur_end = $this->bo->maketime($event['recur_enddate']);
|
||||
if($recur_end != 0)
|
||||
{
|
||||
$recur_end -= $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$recur_end -= $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$str_extra .= lang('ends').': '.lang($GLOBALS['phpgw']->common->show_date($recur_end,'l')).', '.lang($GLOBALS['phpgw']->common->show_date($recur_end,'F')).' '.$GLOBALS['phpgw']->common->show_date($recur_end,'d, Y').' ';
|
||||
}
|
||||
}
|
||||
@ -3004,7 +3012,7 @@
|
||||
$last_endtime = $endtime;
|
||||
if($this->debug)
|
||||
{
|
||||
echo '<!-- Time : '.$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['start']) - $GLOBALS['phpgw']->datetme->tz_offset).' - '.$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['end']) - $GLOBALS['phpgw']->datetme->tz_offset).' : Start : '.$ind.' : Interval # : '.$interval_start.' -->'."\n";
|
||||
echo '<!-- Time : '.$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['start']) - $GLOBALS['phpgw']->datetime->tz_offset).' - '.$GLOBALS['phpgw']->common->show_date($this->bo->maketime($events[$i]['end']) - $GLOBALS['phpgw']->datetime->tz_offset).' : Start : '.$ind.' : Interval # : '.$interval_start.' -->'."\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3396,7 +3404,7 @@
|
||||
);
|
||||
|
||||
// Date
|
||||
$start = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$start = $this->bo->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$var[] = Array(
|
||||
'field' => lang('Start Date'),
|
||||
'data' => $GLOBALS['phpgw']->common->dateformatorder(
|
||||
@ -3418,7 +3426,7 @@
|
||||
);
|
||||
|
||||
// End Date
|
||||
$end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$end = $this->bo->maketime($event['end']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
$var[] = Array(
|
||||
'field' => lang('End Date'),
|
||||
'data' => $GLOBALS['phpgw']->common->dateformatorder(
|
||||
@ -3529,12 +3537,12 @@
|
||||
if($event['recur_enddate']['year'] != 0 && $event['recur_enddate']['month'] != 0 && $event['recur_enddate']['mday'] != 0)
|
||||
{
|
||||
$checked = ' checked';
|
||||
$recur_end = $this->bo->maketime($event['recur_enddate']) - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$recur_end = $this->bo->maketime($event['recur_enddate']) - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
}
|
||||
else
|
||||
{
|
||||
$checked = '';
|
||||
$recur_end = $this->bo->maketime($event['start']) + 86400 - $GLOBALS['phpgw']->datetme->tz_offset;
|
||||
$recur_end = $this->bo->maketime($event['start']) + 86400 - $GLOBALS['phpgw']->datetime->tz_offset;
|
||||
}
|
||||
|
||||
$var[] = Array(
|
||||
|
@ -14,6 +14,7 @@
|
||||
<font size="-1">
|
||||
<form action="{action_url}" method="post" name="{form_name}">
|
||||
<B>{label}:</B>
|
||||
{hidden_vars}
|
||||
<select name="{form_label}" onchange="{form_onchange}">
|
||||
{row}
|
||||
</select>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
function add_image_ahref($link,$image,$alt)
|
||||
{
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" border="0"></a>';
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" title="'.$alt.'" border="0"></a>';
|
||||
}
|
||||
|
||||
$refer = explode('.',MENUACTION);
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
function add_image_ahref($link,$image,$alt)
|
||||
{
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" border="0"></a>';
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" title="'.$alt.'" border="0"></a>';
|
||||
}
|
||||
|
||||
$refer = explode('.',MENUACTION);
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
function add_image_ahref($link,$image,$alt)
|
||||
{
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" border="0"></a>';
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" title="'.$alt.'" border="0"></a>';
|
||||
}
|
||||
|
||||
$refer = explode('.',MENUACTION);
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
function add_image_ahref($link,$image,$alt)
|
||||
{
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" border="0"></a>';
|
||||
return '<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('calendar',$image).'" alt="'.$alt.'" title="'.$alt.'" border="0"></a>';
|
||||
}
|
||||
|
||||
$refer = explode('.',MENUACTION);
|
||||
|
Loading…
Reference in New Issue
Block a user