* * 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$ */ $phpgw_info["flags"] = array("currentapp" => "calendar", "enable_calendar_class" => True, "enable_nextmatchs_class" => True, "parent_page" => "matrixselect.php"); include("../header.inc.php"); if (isset($date) && strlen($date) > 0) { $thisyear = substr($date, 0, 4); $thismonth = substr($date, 4, 2); $thisday = substr($date, 6, 2); } else { if (!isset($day) || !$day) $thisday = $phpgw->calendar->today["day"]; else $thisday = $day; if (!isset($month) || !$month) $thismonth = $phpgw->calendar->today["month"]; else $thismonth = $month; if (!isset($year) || !$year) $thisyear = $phpgw->calendar->today["year"]; else $thisyear = $year; } $date = $thisyear.$thismonth.$thisday; switch($view) { case "free/busy" : echo $phpgw->calendar->timematrix($phpgw->calendar->date_to_epoch($date),0,0,$participants); break; case "weekly" : echo $phpgw->calendar->display_large_week($thisday,$thismonth,$thisyear,true,$participants); break; } echo "
"; echo "
link("viewmatrix.php")."\" method=\"post\" name=\"matrixform\" target=\"viewmatrix\">"; echo ""; echo ""; for ($i=0;$i"; echo ""; echo ""; echo "
"; $phpgw->common->phpgw_footer(); ?>