forked from extern/egroupware
263fdedd2a
places that were including the footer.inc.php to use the function. Re-arrange phpgw.inc.php to include optional classes after reading the DB config misc bugfixes.
73 lines
2.7 KiB
PHP
Executable File
73 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* http://www.phpgroupware.org *
|
|
* This file written by Joseph Engo <jengo@phpgroupware.org> *
|
|
* -------------------------------------------- *
|
|
* 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");
|
|
|
|
if ($friendly) {
|
|
echo "<body bgcolor=\"".$phpgw_info["theme"][bg_color]."\">";
|
|
}
|
|
?>
|
|
|
|
<center>
|
|
<table border="0" cellspacing="4" cellpadding="4">
|
|
<tr>
|
|
<?php
|
|
if (! $friendly)
|
|
echo "<td align=\"left\"><A HREF=\"" . $phpgw->link("year.php","year=" . ($year - 1)) . "\"><<</A>";
|
|
?>
|
|
</td>
|
|
</td>
|
|
<td colspan="<?php echo ($friendly?"6":"4"); ?>" align="center">
|
|
<font face=\"".$phpgw_info["theme"][font]."\" size="+1"><? echo $year; ?></font>
|
|
</td>
|
|
<?php
|
|
if (! $friendly)
|
|
echo "<td align=\"right\"><A HREF=\"" . $phpgw->link("year.php","year=" . ($year + 1)) . "\">>></A>";
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top"><? display_small_month(1,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(2,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(3,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(4,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(5,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(6,$year,False); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top"><? display_small_month(7,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(8,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(9,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(10,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(11,$year,False); ?></td>
|
|
<td valign="top"><? display_small_month(12,$year,False); ?></td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
|
|
<?php
|
|
if (! $friendly) {
|
|
echo " <A HREF=\"" . $phpgw->link("year.php","friendly=1&"
|
|
. "&year=$year") . "\"TARGET=\"cal_printer_friendly\" onMouseOver=\"window."
|
|
. "status = '" . lang("Generate printer-friendly version") . "'\">["
|
|
. lang("Printer Friendly") . "]</A>";
|
|
}
|
|
$phpgw->common->phpgw_footer();
|
|
?>
|