*
* 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$ */
if ($friendly) {
$phpgw_info["flags"]["noheader"] = True;
}
$phpgw_info["flags"]["currentapp"] = "calendar";
include("../header.inc.php");
$view = "day";
if (strlen($date) > 0) {
$thisyear = substr($date,0,4);
$thismonth = substr($date,4,2);
$thisday = substr($date,6,2);
} else {
if ($month == 0) {
$thismonth = date("m");
} else {
$thismonth = $month;
}
if ($year == 0) {
$thisyear = date("Y");
} else {
$thisyear = $year;
}
if ($day == 0) {
$thisday = date("d");
} else {
$thisday = $day;
}
}
$now = mktime (2, 0, 0, $thismonth, $thisday, $thisyear);
$next = mktime(2, 0, 0, $thismonth, $thisday + 1, $thisyear);
$nextyear = date("Y", $next);
$nextmonth = date("m", $next);
$nextday = date("d", $next);
$month_ago = date("Ymd", mktime(2, 0, 0,$thismonth - 1,$thisday,$thisyear));
$prev = mktime(2, 0, 0, $thismonth, $day - 1, $thisyear);
$prevyear = date("Y", $prev);
$prevmonth = date("m", $prev);
$prevday = date("d", $prev);
$month_ahead = date("Ymd", mktime(2,0,0,$thismonth + 1,$thisday,$thisyear));
/* Pre-Load the repeated events for quckier access */
$repeated_events = read_repeated_events();
if ($friendly) {
echo "
";
}
?>
|
common->display_fullname($phpgw_info["user"]["userid"],$phpgw_info["user"]["firstname"],$phpgw_info["user"]["lastname"]);
?>
|
|
|
" CLASS="monthlink">< |
|
" CLASS="monthlink">> |
";
if ($WEEK_START == 0)
echo "" .
substr($weekday_names[0], 0, 2) . " | ";
for ($i = 1; $i < 7; $i++) {
echo "" .
substr($weekday_names[$i], 0, 2) . " | ";
}
if ($WEEK_START == 1)
echo "" .
substr($weekday_names[0], 0, 2) . " | ";
echo "\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 "\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 "";
else
echo " | ";
echo "";
echo "link("day.php","date=".date("Ymd",$date));
echo "\" CLASS=\"monthlink\">" .
date("d", $date) . " | \n";
} else {
print " | \n";
}
}
echo " \n";
}
}
?>
|
|
link("day.php");
if ($thisyear)
echo "&year=$thisyear&month=$thismonth&day=$thisday";
?>&friendly=1" TARGET="cal_printer_friendly" onMouseOver="window.status = '[" . lang_calendar("Printer Friendly"); ?>]