2001-01-01 19:49:28 +01:00
|
|
|
<?php
|
2001-01-17 13:35:43 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Calendar *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
|
|
* http://www.radix.net/~cknudsen *
|
|
|
|
* Written by Mark Peters <skeeter@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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2001-02-07 13:05:15 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2001-01-01 19:49:28 +01:00
|
|
|
$d1 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
|
|
|
|
if($d1 == "htt" || $d1 == "ftp" ) {
|
|
|
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
|
|
|
$phpgw->common->phpgw_exit();
|
|
|
|
} unset($d1);
|
|
|
|
|
|
|
|
$tmp_app_inc = $phpgw_info["server"]["app_inc"];
|
2001-02-07 12:53:44 +01:00
|
|
|
$phpgw_info["server"]["app_inc"] = $phpgw->common->get_inc_dir('calendar');
|
2001-01-01 19:49:28 +01:00
|
|
|
|
|
|
|
if ($phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
|
2001-01-08 02:24:48 +01:00
|
|
|
include($phpgw_info["server"]["app_inc"].'/functions.inc.php');
|
2001-01-16 04:26:16 +01:00
|
|
|
echo "\n".'<tr valign="top"><td><table border="0" cols="3"><tr><td align="center" width="30%" valign="top"><!-- Calendar info -->'."\n";
|
|
|
|
echo $phpgw->calendar->mini_calendar($phpgw->calendar->today["day"],$phpgw->calendar->today["month"],$phpgw->calendar->today["year"],"day.php").'</td><td align="center">';
|
|
|
|
$now = $phpgw->calendar->gmtdate($phpgw->calendar->today["raw"]);
|
2001-01-08 02:24:48 +01:00
|
|
|
echo '<table border="0" width="70%" cellspacing="0" cellpadding="0"><tr><td align="center">'
|
|
|
|
. lang(date("F",$phpgw->calendar->today["raw"])).' '.$phpgw->calendar->today["day"].', '.$phpgw->calendar->today["year"].'</tr></td>'
|
2001-01-12 05:18:36 +01:00
|
|
|
. '<tr><td bgcolor="'.$phpgw_info["theme"]["bg_text"].'" valign="top">';
|
2001-01-26 19:34:53 +01:00
|
|
|
// $phpgw->calendar->printer_friendly = True;
|
2001-01-12 05:18:36 +01:00
|
|
|
echo $phpgw->calendar->print_day_at_a_glance($now).'</td></tr></table>'."\n";
|
2001-01-26 19:34:53 +01:00
|
|
|
// $phpgw->calendar->printer_friendly = False;
|
2001-01-08 08:31:34 +01:00
|
|
|
echo "\n".'<!-- Calendar info --></table></td></tr>'."\n";
|
2001-01-01 19:49:28 +01:00
|
|
|
unset($phpgw->calendar);
|
|
|
|
}
|
|
|
|
|
2001-01-07 04:55:05 +01:00
|
|
|
|
2001-01-01 19:49:28 +01:00
|
|
|
$phpgw_info["server"]["app_inc"] = $tmp_app_inc;
|
|
|
|
?>
|