<?php
/**
* Example use of the Calendar class
* Copyright (c): 1999-2000 ispi, all rights reserved
* This source file is subject to version 2.02 of the PHP license,
* that is bundled with this package in the file LICENSE, and is
* available at through the world-wide-web at
* http://www.php.net/license/2_02.txt.
* If you did not receive a copy of the PHP license and are unable to
* obtain it through the world-wide-web, please send a note to
* hide@address.com so we can mail you a copy immediately.
*
* Copyright (c) 1999, 2000 ispi
*
* @access public
*
* @version 1.1
* @author Monte Ohrt <hide@address.com>
*/
if($source == "pretty")
{
show_source($SCRIPT_FILENAME);
exit();
}
elseif($source == "plain")
{
header("Content-type: text/plain");
readfile($SCRIPT_FILENAME);
exit();
}
require("Calc.php");
if(empty($year) || empty($month))
{
// get current year, month and day
$year = Date_Calc::dateNow("%Y");
$month = Date_Calc::dateNow("%m");
$day = "01";
}
// get month structure for generating calendar
$month_cal = Date_Calc::getCalendarMonth($month,$year,"%E");
$view = "month";
?>
<CENTER>
<TABLE border=0>
<TR>
<TD valign=top>
<TABLE border=0 bgcolor=#1e1e1e cellspacing=1 cellpadding=2>
<TR align=center>
<TD colspan=3 bgcolor=#d0d0d0>
<A href="<?php echo $PHP_SELF."?year=".($year-1)."&month=".$month."&day=01"; ?>"><<</A>
<?php echo "<b>".Date_Calc::dateFormat($day,$month,$year,"%Y")."</b>"; ?>
<A href="<?php echo $PHP_SELF."?year=".($year+1)."&month=".$month."&day=01"; ?>">>></A>
</TD>
</TR>
<TR bgcolor=#d0d0d0 align=center>
<?php
// loop through the months and display month links in the lefthand corner
for($curr_month = 1; $curr_month <= 12; $curr_month++)
{
if($month == $curr_month)
echo "<TD>".Date_Calc::dateFormat("01",$curr_month,$year,"<b>%b</b>")."</TD>\n";
else
echo "<TD>"
."<A href=\"showCalendarMonth.php?year="
.$year."&month=".sprintf("%02d",$curr_month)."&day=01"
."\">"
.Date_Calc::dateFormat("01",$curr_month,$year,"%b")
."</A>\n"
."</TD>\n";
if($curr_month < 11)
{
if(!(($curr_month) % 3) && $curr_month)
echo "</TR>\n<TR bgcolor=#d0d0d0 align=center>\n";
}
}
?>
</TR>
</TABLE>
</TD>
<TD>
<TABLE border=0 bgcolor=#1e1e1e cellspacing=1>
<TR bgcolor=#d0d0d0>
<TD rowspan=3>
</TD>
<TD colspan=7 align=center>
<?php include("showNavBar.php"); ?>
</TD>
</TR>
<TR bgcolor=#e0e0e0>
<TD colspan=7 align=center>
<A href="<?php echo $PHP_SELF."?".Date_Calc::beginOfPrevMonth($day,$month,$year,"year=%Y&month=%m&day=%d"); ?>"><<</A>
<?php echo Date_Calc::dateFormat($day,$month,$year,"<b>%B, %Y</b>%n"); ?>
<A href="<?php echo $PHP_SELF."?".Date_Calc::beginOfNextMonth($day,$month,$year,"year=%Y&month=%m&day=%d"); ?>">>></A>
</TD>
</TR>
<?php
if(DATE_CALC_BEGIN_WEEKDAY == 0)
{
?>
<TR bgcolor=#d3d3d3>
<TH>Sun</TH>
<TH>Mon</TH>
<TH>Tue</TH>
<TH>Wed</TH>
<TH>Thu</TH>
<TH>Fri</TH>
<TH>Sat</TH>
</TR>
<?php
}
else
{
?>
<TR bgcolor=#d3d3d3>
<TH>Mon</TH>
<TH>Tue</TH>
<TH>Wed</TH>
<TH>Thu</TH>
<TH>Fri</TH>
<TH>Sat</TH>
<TH>Sun</TH>
</TR>
<?php
}
$curr_day = Date_Calc::dateNow("%Y%m%d");
// loop through each week of the calendar month
for($row = 0; $row < count($month_cal); $row++)
{
echo "<TR>\n";
echo "<TD rowspan=2 align=right valign=top bgcolor=#e0e0e0 width=1>"
."<A href=\"showCalendarWeek.php?"
.Date_Calc::daysToDate($month_cal[$row][0],"year=%Y&month=%m&day=%d")
."\"> <font size=-1>week <br> view</font> </A>"
."</TD>\n";
// loop through each day of the current week
for($col=0; $col < 7; $col++)
{
// set the font color of the day, highlight if it is today
if(Date_Calc::daysToDate($month_cal[$row][$col],"%Y%m%d") == $curr_day)
$fontColor="#a00000";
elseif(Date_Calc::daysToDate($month_cal[$row][$col],"%m") == $month)
$fontColor="#0000ff";
else
$fontColor="#777777";
echo "<TD bgcolor=#e0e0e0>"
."<A href=\"showCalendarDay.php?"
.Date_Calc::daysToDate($month_cal[$row][$col],"year=%Y&month=%m&day=%d")
."\">"
."<FONT color=$fontColor>"
.Date_Calc::daysToDate($month_cal[$row][$col],"%d")
."</FONT>"
."</A>"
."</TD>\n";
}
echo "</TR>\n";
echo "<TR>\n";
// output the row for the week. This is where you would print calendar events and such.
for($col=0; $col < 7; $col++)
{
echo "<TD bgcolor=#f1f1f1>"
." "
."<br><br>"
."</TD>\n";
}
echo "</TR>\n";
}
?>
</TABLE>
</TD>
</TR>
</TABLE>
<P>
show source
<A href="showCalendarMonth.php?source=plain">Plain</A>
<A href="showCalendarMonth.php?source=pretty">Pretty</A>
</P>
</CENTER>