egroupware/calendar/day.php

86 lines
3.5 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php php_track_vars?>
<?php
/**************************************************************************\
* phpGroupWare - Calendar *
* http://www.phpgroupware.org *
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
* 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$ */
2000-11-18 22:44:05 +01:00
if (isset($friendly) && $friendly==1){
$phpgw_info["flags"]["noheader"] = True;
2000-11-18 22:44:05 +01:00
$phpgw_info["flags"]["nonavbar"] = True;
$phpgw_info["flags"]["nocalendarheader"] = True;
2000-11-11 21:55:25 +01:00
} else {
$friendly = 0;
}
2000-08-18 05:24:22 +02:00
2000-11-18 22:44:05 +01:00
$phpgw_info["flags"] = array("currentapp" => "calendar", "enable_calendar_class" => True, "enable_nextmatchs_class" => True, "enable_template_class" => True);
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
$view = "day";
2000-11-11 21:55:25 +01:00
if (isset($date) && strlen($date) > 0) {
$thisyear = substr($date, 0, 4);
$thismonth = substr($date, 4, 2);
$thisday = substr($date, 6, 2);
2000-08-18 05:24:22 +02:00
} else {
2000-11-11 21:55:25 +01:00
if (!isset($day) || !$day)
$thisday = $phpgw->calendar->today["day"];
else
$thisday = $day;
if (!isset($month) || !$month)
$thismonth = $phpgw->calendar->today["month"];
else
2000-08-18 05:24:22 +02:00
$thismonth = $month;
2000-11-11 21:55:25 +01:00
if (!isset($year) || !$year)
$thisyear = $phpgw->calendar->today["year"];
else
2000-08-18 05:24:22 +02:00
$thisyear = $year;
}
2000-11-12 03:55:13 +01:00
$now = $phpgw->calendar->splitdate(mktime (2, 0, 0, $thismonth, $thisday, $thisyear));
2000-08-18 05:24:22 +02:00
2000-11-18 22:44:05 +01:00
$phpgw->template->set_file(array("day" => "day.tpl"));
$phpgw->template->set_block("day");
if ($friendly) {
2000-11-18 22:44:05 +01:00
$phpgw->template->set_var("printer_friendly","<body bgcolor=\"".$phpgw_info["theme"]["bg_color"]."\">");
} else {
$phpgw->template->set_var("printer_friendly","");
}
2000-11-18 22:44:05 +01:00
$phpgw->template->set_var("bg_text",$phpgw_info["theme"]["bg_text"]);
2000-11-11 21:55:25 +01:00
$m = mktime(2,0,0,$thismonth,1,$thisyear);
2000-11-18 22:44:05 +01:00
$phpgw->template->set_var("date",lang(strftime("%B",$m))." ".$thisday.", ".$thisyear);
$phpgw->template->set_var("username",$phpgw->common->display_fullname($phpgw_info["user"]["userid"],$phpgw_info["user"]["firstname"],$phpgw_info["user"]["lastname"]));
$phpgw->template->set_var("daily_events",$phpgw->calendar->print_day_at_a_glance($now));
$cal = $phpgw->calendar->pretty_small_calendar($now["day"],$now["month"],$now["year"],"day.php");
$phpgw->template->set_var("small_calendar",$cal);
if (!$friendly) {
$param = "";
$param .= "year=".$now["year"]."&month=".$now["month"]."&day=".$now["day"]."&";
2000-08-18 05:24:22 +02:00
2000-11-18 22:44:05 +01:00
$param .= "friendly=1\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window."
. "status = '" . lang("Generate printer-friendly version"). "'";
$phpgw->template->set_var("print","<a href=\"".$phpgw->link($PHP_SELF,$param)."\">[". lang("Printer Friendly") . "]</A>");
$phpgw->template->parse("out","day");
$phpgw->template->pparse("out","day");
$phpgw->common->phpgw_footer();
} else {
$phpgw->template->set_var("print","");
$phpgw->template->parse("out","day");
$phpgw->template->pparse("out","day");
2000-09-28 02:17:13 +02:00
}
2000-08-18 05:24:22 +02:00
?>