2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Calendar *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
|
|
* http://www.radix.net/~cknudsen *
|
2001-01-17 13:35:43 +01:00
|
|
|
* Modified by Mark Peters <skeeter@phpgroupware.org> *
|
2000-08-18 05:24:22 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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$ */
|
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$phpgw_flags = Array (
|
|
|
|
'currentapp' => 'calendar',
|
|
|
|
'enable_nextmatchs_class' => True
|
|
|
|
);
|
2001-02-14 05:36:44 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
2001-02-14 03:58:46 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
if (isset($friendly) && $friendly)
|
|
|
|
{
|
|
|
|
$phpgw_info['flags']['noheader'] = True;
|
|
|
|
$phpgw_info['flags']['nonavbar'] = True;
|
|
|
|
$phpgw_info['flags']['noappheader'] = True;
|
|
|
|
$phpgw_info['flags']['noappfooter'] = True;
|
|
|
|
$phpgw_info['flags']['nofooter'] = True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$friendly = 0;
|
|
|
|
}
|
2000-11-19 18:18:25 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
include('../header.inc.php');
|
|
|
|
|
|
|
|
$view = 'day';
|
2000-11-21 05:10:45 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$now = $phpgw->calendar->makegmttime(0, 0, 0, $thismonth, $thisday, $thisyear);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$p = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('calendar'));
|
|
|
|
$template = Array(
|
|
|
|
'day_t' => 'day.tpl'
|
|
|
|
);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$p->set_file($template);
|
2000-11-18 22:44:05 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
// $phpgw->template->set_block('day_t');
|
2000-11-18 22:44:05 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
if ($friendly)
|
|
|
|
{
|
|
|
|
$p->set_var('printer_friendly','<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$p->set_var('printer_friendly','');
|
|
|
|
}
|
2000-08-18 18:41:04 +02:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$p->set_var('bg_text',$phpgw_info['theme']['bg_text']);
|
2000-11-18 22:44:05 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$m = mktime(0,0,0,$thismonth,1,$thisyear);
|
|
|
|
$p->set_var('date',lang(date('F',$m)).' '.$thisday.', '.$thisyear);
|
|
|
|
$p->set_var('username',$phpgw->common->grab_owner_name($owner));
|
|
|
|
$p->set_var('daily_events',$phpgw->calendar->print_day_at_a_glance($now,$owner));
|
|
|
|
$p->set_var('small_calendar',$phpgw->calendar->mini_calendar($thisday,$thismonth,$thisyear,'day.php'));
|
2001-02-14 03:58:46 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
if ($friendly == 0)
|
|
|
|
{
|
|
|
|
$param = 'year='.$thisyear.'&month='.$thismonth.'&day='.$thisday.'&friendly=1&filter='.$filter.'&owner='.$owner;
|
|
|
|
$print = '<a href="'.$phpgw->link('',$param)."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$print = '';
|
|
|
|
}
|
2001-02-14 03:58:46 +01:00
|
|
|
|
2001-02-19 05:33:25 +01:00
|
|
|
$p->set_var('print',$print);
|
|
|
|
|
|
|
|
$p->pparse('out','day_t');
|
|
|
|
$phpgw->common->phpgw_footer();
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|