2000-08-18 05:24:22 +02:00
|
|
|
<?php php_track_vars?>
|
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Calendar *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
|
|
* http://www.radix.net/~cknudsen *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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$ */
|
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
if (isset($friendly) && $friendly){
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["noheader"] = True;
|
2000-11-11 21:55:25 +01:00
|
|
|
} else {
|
|
|
|
$friendly = 0;
|
2000-08-18 18:41:04 +02:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["currentapp"] = "calendar";
|
2000-08-18 05:24:22 +02:00
|
|
|
include("../header.inc.php");
|
|
|
|
|
|
|
|
$view = "day";
|
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
if (isset($date) && strlen($date) > 0) {
|
|
|
|
$thisyear = substr($date, 0, 4);
|
|
|
|
$thismonth = substr($date, 4, 2);
|
|
|
|
$thisday = substr($date, 6, 2);
|
2000-08-18 05:24:22 +02:00
|
|
|
} else {
|
2000-11-11 21:55:25 +01:00
|
|
|
if (!isset($day) || !$day)
|
|
|
|
$thisday = $phpgw->calendar->today["day"];
|
|
|
|
else
|
|
|
|
$thisday = $day;
|
|
|
|
if (!isset($month) || !$month)
|
|
|
|
$thismonth = $phpgw->calendar->today["month"];
|
|
|
|
else
|
2000-08-18 05:24:22 +02:00
|
|
|
$thismonth = $month;
|
2000-11-11 21:55:25 +01:00
|
|
|
if (!isset($year) || !$year)
|
|
|
|
$thisyear = $phpgw->calendar->today["year"];
|
|
|
|
else
|
2000-08-18 05:24:22 +02:00
|
|
|
$thisyear = $year;
|
|
|
|
}
|
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
$now = $phpgw->calendar->splitdate(mktime (2, 0, 0, $thismonth, $thisday, $thisyear));
|
|
|
|
|
|
|
|
$next = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth,$thisday + 1,$thisyear));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
$month_ago = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth - 1,$thisday,$thisyear));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
$prev = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth - 1,1,$thisyear));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
$month_ahead = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth + 1,$thisday,$thisyear));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-08-18 18:41:04 +02:00
|
|
|
if ($friendly) {
|
2000-11-11 21:55:25 +01:00
|
|
|
echo "<body bgcolor=\"".$phpgw_info["theme"]["bg_color"]."\">";
|
2000-08-18 18:41:04 +02:00
|
|
|
}
|
|
|
|
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
2000-11-11 21:55:25 +01:00
|
|
|
<table border="0" width="100%">
|
|
|
|
<tr><td valign="top" width="70%"><tr><td>
|
|
|
|
<table border="0" width=100%>
|
|
|
|
<tr>
|
|
|
|
<td align="middle"><font size="+2" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>"><b>
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
<?php
|
|
|
|
$m = mktime(2,0,0,$thismonth,1,$thisyear);
|
|
|
|
echo lang(strftime("%B",$m)) . " " .$thisday . ", " . $thisyear;
|
|
|
|
?>
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
</b></font>
|
|
|
|
<font size="+1" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>">
|
2000-08-18 05:24:22 +02:00
|
|
|
<br>
|
|
|
|
<?php
|
2000-09-05 05:05:32 +02:00
|
|
|
echo $phpgw->common->display_fullname($phpgw_info["user"]["userid"],$phpgw_info["user"]["firstname"],$phpgw_info["user"]["lastname"]);
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
2000-11-11 21:55:25 +01:00
|
|
|
</font>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
|
|
|
<tr>
|
|
|
|
<td bgcolor="<?php echo $phpgw_info["theme"]["bg_text"]; ?>">
|
|
|
|
<table border="0" width="100%" cellspacing="1" cellpadding="2" border="0">
|
|
|
|
<?php echo $phpgw->calendar->print_day_at_a_glance($now); ?>
|
2000-08-18 05:24:22 +02:00
|
|
|
</td>
|
2000-11-11 21:55:25 +01:00
|
|
|
</tr>
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-11-11 21:55:25 +01:00
|
|
|
</table>
|
|
|
|
</td></tr></table>
|
|
|
|
</td>
|
|
|
|
<td valign="top">
|
2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2000-11-11 21:55:25 +01:00
|
|
|
if (!$friendly) {
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|
|
|
|
<DIV ALIGN="right">
|
|
|
|
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">
|
|
|
|
<TR><TD BGCOLOR="<?php echo $TABLEBG?>">
|
|
|
|
<TABLE BORDER="0" WIDTH="100%" CELLSPACING="1" CELLPADDING="2" BORDER="0">
|
|
|
|
<TR><TH COLSPAN="7" BGCOLOR="<?php echo $THBG?>"><FONT SIZE="+4" COLOR="<?php echo $THFG?>"><?php echo $thisday?></FONT></TH></TR>
|
|
|
|
<TR>
|
|
|
|
<TD ALIGN="left" BGCOLOR="<?php echo $THBG?>"><A HREF="<?php echo $phpgw->link("day.php","date=$month_ago"); ?>" CLASS="monthlink"><</A></TD>
|
|
|
|
<TH COLSPAN="5" BGCOLOR="<?php echo $THBG?>"><FONT COLOR="<?php echo $THFG?>"><?php echo $month_names[$thismonth] . " $thisyear"; ?></FONT></TH>
|
|
|
|
<TD ALIGN="right" BGCOLOR="<?php echo $THBG?>"><A HREF="<?php echo $phpgw->link("day.php","date=$month_ahead") ?>" CLASS="monthlink">></A></TD>
|
|
|
|
</TR>
|
|
|
|
<?php
|
|
|
|
echo "<TR>";
|
|
|
|
if ($WEEK_START == 0)
|
|
|
|
echo "<TD BGCOLOR=\"$TODAYCELLBG\"><FONT SIZE=\"-2\">" .
|
|
|
|
|
|
|
|
substr($weekday_names[0], 0, 2) . "</TD>";
|
|
|
|
for ($i = 1; $i < 7; $i++) {
|
|
|
|
echo "<TD BGCOLOR=\"$TODAYCELLBG\"><FONT SIZE=\"-2\">" .
|
|
|
|
substr($weekday_names[$i], 0, 2) . "</TD>";
|
|
|
|
}
|
|
|
|
if ($WEEK_START == 1)
|
|
|
|
echo "<TD BGCOLOR=\"$TODAYCELLBG\"><FONT SIZE=\"-2\">" .
|
|
|
|
substr($weekday_names[0], 0, 2) . "</TD>";
|
|
|
|
echo "</TR>\n";
|
|
|
|
|
|
|
|
// generate values for first day and last day of month
|
|
|
|
$monthstart = mktime(2, 0, 0, $thismonth, 1, $thisyear);
|
|
|
|
$monthend = mktime(2, 0, 0, $thismonth + 1, 0, $thisyear);
|
|
|
|
|
|
|
|
if ($WEEK_START == "1")
|
|
|
|
$wkstart = get_monday_before($thisyear, $thismonth, 1) + 7200;
|
|
|
|
else
|
|
|
|
$wkstart = get_sunday_before($thisyear, $thismonth, 1) + 7200;
|
|
|
|
|
|
|
|
$wkend = $wkstart + (3600 * 24 * 7);
|
|
|
|
|
|
|
|
for ($i = $wkstart; date("Ymd", $i) <= date("Ymd", $monthend); $i += (24 * 3600 * 7)) {
|
|
|
|
for ($i = $wkstart; date("Ymd", $i) <= date("Ymd", $monthend); $i += (24 * 3600 * 7)) {
|
|
|
|
echo "<TR ALIGN=\"center\">\n";
|
|
|
|
for ($j = 0; $j < 7; $j++) {
|
|
|
|
$date = $i + ($j * 24 * 3600);
|
|
|
|
if (date("Ymd", $date) >= date("Ymd", $monthstart) && date("Ymd", $date) <= date("Ymd", $monthend)) {
|
|
|
|
if (date("Ymd", $date) == date("Ymd", $now))
|
|
|
|
echo "<TD BGCOLOR=\"$TODAYCELLBG\">";
|
|
|
|
else
|
|
|
|
echo "<TD BGCOLOR=\"$TODAYCELLBG\">";
|
|
|
|
echo "<FONT SIZE=\"-2\">";
|
|
|
|
echo "<A HREF=\"".$phpgw->link("day.php","date=".date("Ymd",$date));
|
|
|
|
echo "\" CLASS=\"monthlink\">" .
|
|
|
|
date("d", $date) . "</A></FONT></TD>\n";
|
|
|
|
} else {
|
|
|
|
print "<TD BGCOLOR=\"$TODAYCELLBG\"> </TD>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
echo "</TR>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</TABLE>
|
|
|
|
</TD></TR></TABLE>
|
|
|
|
</DIV>
|
|
|
|
<?php } ?>
|
|
|
|
</TD></TR></TABLE>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if (! $friendly) {
|
2000-09-28 02:17:13 +02:00
|
|
|
$param = "";
|
2000-08-18 05:24:22 +02:00
|
|
|
if ($thisyear)
|
2000-09-28 02:17:13 +02:00
|
|
|
$param .= "year=$thisyear&month=$thismonth&day=$thisday&";
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-09-28 02:17:13 +02:00
|
|
|
$param .= "friendly=1\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window."
|
|
|
|
. "status = '" . lang("Generate printer-friendly version"). "'";
|
|
|
|
echo "<a href=\"".$phpgw->link($PHP_SELF,$param)."\">";
|
|
|
|
echo "[". lang("Printer Friendly") . "]</A>";
|
2000-09-29 07:24:18 +02:00
|
|
|
$phpgw->common->phpgw_footer();
|
2000-09-28 02:17:13 +02:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
?>
|