more functions

This commit is contained in:
skeeter 2000-11-12 02:55:13 +00:00
parent 7a7caded67
commit 4899f36f05
2 changed files with 39 additions and 110 deletions

View File

@ -44,15 +44,7 @@
$thisyear = $year; $thisyear = $year;
} }
$now = $phpgw->calendar->splitdate(mktime (2, 0, 0, $thismonth, $thisday, $thisyear)); $now = $phpgw->calendar->splitdate(mktime (2, 0, 0, $thismonth, $thisday, $thisyear));
$next = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth,$thisday + 1,$thisyear));
$month_ago = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth - 1,$thisday,$thisyear));
$prev = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth - 1,1,$thisyear));
$month_ahead = $phpgw->calendar->splitdate(mktime(2,0,0,$thismonth + 1,$thisday,$thisyear));
if ($friendly) { if ($friendly) {
echo "<body bgcolor=\"".$phpgw_info["theme"]["bg_color"]."\">"; echo "<body bgcolor=\"".$phpgw_info["theme"]["bg_color"]."\">";
@ -60,112 +52,51 @@
?> ?>
<table border="0" width="100%"> <table border="0" width="100%">
<tr><td valign="top" width="70%"><tr><td> <tr>
<table border="0" width=100%> <td valign="top" width="70%">
<tr> <tr>
<td align="middle"><font size="+2" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>"><b> <td>
<table border="0" width=100%>
<tr>
<td align="middle">
<font size="+2" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>">
<b>
<?php <?php
$m = mktime(2,0,0,$thismonth,1,$thisyear); $m = mktime(2,0,0,$thismonth,1,$thisyear);
echo lang(strftime("%B",$m)) . " " .$thisday . ", " . $thisyear; echo lang(strftime("%B",$m)) . " " .$thisday . ", " . $thisyear;
?> ?>
</b>
</b></font> </font>
<font size="+1" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>"> <font size="+1" color="<?php echo $phpgw_info["theme"]["bg_text"]; ?>"><br>
<br>
<?php <?php
echo $phpgw->common->display_fullname($phpgw_info["user"]["userid"],$phpgw_info["user"]["firstname"],$phpgw_info["user"]["lastname"]); echo $phpgw->common->display_fullname($phpgw_info["user"]["userid"],$phpgw_info["user"]["firstname"],$phpgw_info["user"]["lastname"]);
?> ?>
</font> </font>
</td> </td>
</tr> </tr>
</table> </table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr>
<tr> <td bgcolor="<?php echo $phpgw_info["theme"]["bg_text"]; ?>">
<td bgcolor="<?php echo $phpgw_info["theme"]["bg_text"]; ?>"> <table border="0" width="100%" cellspacing="1" cellpadding="2" border="0">
<table border="0" width="100%" cellspacing="1" cellpadding="2" border="0"> <?php echo $phpgw->calendar->print_day_at_a_glance($now); ?>
<?php echo $phpgw->calendar->print_day_at_a_glance($now); ?> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign="top" align="right">
<?php echo $phpgw->calendar->pretty_small_calendar($now["day"],$now["month"],$now["year"],"day.php"); ?>
</td> </td>
</tr> </tr>
</table> </table>
</td></tr></table>
</td>
<td valign="top">
<?php
if (!$friendly) {
?>
<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">&lt;</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">&gt;</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\">&nbsp;</TD>\n";
}
}
echo "</TR>\n";
}
}
?>
</TABLE>
</TD></TR></TABLE>
</DIV>
<?php } ?>
</TD></TR></TABLE>
<?php <?php
if (! $friendly) { if (! $friendly) {
$param = ""; $param = "";
if ($thisyear) // if ($thisyear)
$param .= "year=$thisyear&month=$thismonth&day=$thisday&"; $param .= "year=".$now["year"]."&month=".$now["month"]."&day=".$now["day"]."&";
$param .= "friendly=1\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window." $param .= "friendly=1\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window."
. "status = '" . lang("Generate printer-friendly version"). "'"; . "status = '" . lang("Generate printer-friendly version"). "'";

View File

@ -66,10 +66,9 @@
<table border="0" width="100%"> <table border="0" width="100%">
<tr> <tr>
<?php <?php
// if (! $friendly) { echo "<td align=\"left\">";
echo "<td align=\"left\">"; echo $phpgw->calendar->pretty_small_calendar($thisday,$prev["month"],$prev["year"],"edit_entry.php");
echo $phpgw->calendar->display_small_month($prev["month"],$prev["year"],True,"edit_entry.php"); echo "</td>";
// }
?> ?>
<td align="middle"><font size="+2" color="#000000"><B> <td align="middle"><font size="+2" color="#000000"><B>
@ -85,10 +84,9 @@
?> ?>
</font></td> </font></td>
<?php <?php
// if (! $friendly) { echo "<td align=\"right\">";
echo "<td align=\"right\">"; echo $phpgw->calendar->pretty_small_calendar($thisday,$next["month"],$next["year"],"edit_entry.php");
echo $phpgw->calendar->display_small_month($next["month"],$next["year"],True,"edit_entry.php"); echo "</td>";
// }
?> ?>
</tr> </tr>
</table> </table>