forked from extern/egroupware
Applied Ralf Becker's patches for planner. Still have some unresolved issues with multiple categories. Also some possible fixes for mhicks.
This commit is contained in:
parent
80062a3afe
commit
407c60e759
@ -276,11 +276,6 @@
|
||||
|
||||
if (!$this->bo->printer_friendly)
|
||||
{
|
||||
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['noappheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['noappfooter']);
|
||||
$GLOBALS['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>';
|
||||
@ -303,6 +298,15 @@
|
||||
'print' => $print
|
||||
);
|
||||
|
||||
if (!$this->bo->printer_friendly)
|
||||
{
|
||||
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['noappheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['noappfooter']);
|
||||
$GLOBALS['phpgw']->common->phpgw_header();
|
||||
}
|
||||
|
||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||
$p->set_unknowns('remove');
|
||||
$p->set_file(
|
||||
@ -321,7 +325,7 @@
|
||||
$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_firendly || ($this->bo->printer_friendly && @$this->bo->prefs['calendar']['display_minicals']))
|
||||
if (!$this->bo->printer_friendly || ($this->bo->printer_friendly && @$this->bo->prefs['calendar']['display_minicals']))
|
||||
{
|
||||
$minical_this = $this->mini_calendar(
|
||||
Array(
|
||||
@ -363,9 +367,6 @@
|
||||
|
||||
if (!$this->bo->printer_friendly)
|
||||
{
|
||||
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
|
||||
$GLOBALS['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>';
|
||||
@ -400,6 +401,13 @@
|
||||
'print' => $print
|
||||
);
|
||||
|
||||
if (!$this->bo->printer_friendly)
|
||||
{
|
||||
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
||||
unset($GLOBALS['phpgw_info']['flags']['nonavbar']);
|
||||
$GLOBALS['phpgw']->common->phpgw_header();
|
||||
}
|
||||
|
||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||
$p->set_file(
|
||||
Array(
|
||||
@ -1003,7 +1011,7 @@
|
||||
|
||||
if ($akt_cell < $start_cell)
|
||||
{
|
||||
$row[$event->id.\'_1\'] = \' \';
|
||||
$row[$event[\'id\'].\'_1\'] = \' \';
|
||||
$row[\'.\'.$event[\'id\'].\'_1\'] = \'colspan="\'.($start_cell-$akt_cell).\'"\';
|
||||
}
|
||||
|
||||
@ -1034,6 +1042,7 @@
|
||||
|
||||
$akt_cell = $end_cell + 1;
|
||||
}
|
||||
}
|
||||
ksort($rows);
|
||||
while (list($k,$r) = each($rows))
|
||||
{
|
||||
@ -1049,8 +1058,13 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$bgcolor = \'bgcolor="\'.$this->theme[\'th_bg\'].\'"\';
|
||||
|
||||
if ($this->debug)
|
||||
{
|
||||
_debug_array($rows);
|
||||
reset($rows);
|
||||
}
|
||||
echo $html->table(
|
||||
array(
|
||||
\'_h\' => $header,
|
||||
@ -1818,17 +1832,34 @@
|
||||
return $names;
|
||||
}
|
||||
|
||||
function planner_category($id)
|
||||
function planner_category($ids)
|
||||
{
|
||||
static $cats;
|
||||
|
||||
echo "Categories : ".$ids."<br>\n";
|
||||
if(!is_array($ids))
|
||||
{
|
||||
if (strpos($ids,','))
|
||||
{
|
||||
$id_array = explode(',',$ids);
|
||||
}
|
||||
else
|
||||
{
|
||||
$id_array[0] = $ids;
|
||||
}
|
||||
}
|
||||
@reset($id_array);
|
||||
$ret_val = Array();
|
||||
while(list($index,$id) = each($id_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];
|
||||
$ret_val[] = $cats[$id];
|
||||
}
|
||||
return implode($ret_val,',');
|
||||
}
|
||||
|
||||
function week_header($month,$year,$display_name = False)
|
||||
|
Loading…
Reference in New Issue
Block a user