Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00032
00033 include_once ('.'.DATEPLANER_ROOT_DIR.'/includes/inc.month.php');
00034
00035
00036
00037 if($_GET[action] == "next"){
00038 $_GET[year] = $_GET[year] + 1;
00039 $minical_show = setMinicalendar($_GET[month], $_GET[year], $DP_Lang, $_GET[app]);
00040 }elseif($_GET[action] == "last"){
00041 $_GET[year] = $_GET[year] - 1;
00042 $minical_show = setMinicalendar($_GET[month], $_GET[year], $DP_Lang, $_GET[app]);
00043 }else{
00044 $minical_show = setMinicalendar($_REQUEST[month],$_REQUEST[year], $DP_Lang, $_REQUEST[app]);
00045 }
00046 $keywords_float = showKeywords($_REQUEST[S_Keywords], $DB);
00047 eval ("\$keywords_show = \"".$Gui->getTemplate("menue_keyword")."\";");
00048 eval ("\$lefttxt = \"".$Gui->getTemplate("menue")."\";");
00049 eval ("\$left = \"".$Gui->getTemplate("left")."\";");
00050
00051
00052 $right = '';
00053
00054
00055
00056
00057 $downtext = '';
00058
00059
00060 if ($_REQUEST["timestamp"] ) {
00061 $Return = setMonthView($_REQUEST["timestamp"], $_REQUEST["week_s"], False, $DB);
00062 }else {
00063 $first_change = true;
00064 $Return = setMonthView(mktime(0,0,0), $_REQUEST["week_s"], $_REQUEST["first_change"], $DB);
00065 }
00066 $month_navigation = $Return[0];
00067 $month_float = $Return[1];
00068 $month_string = $Return[2];
00069 eval ("\$centertxt = \"".$Gui->getTemplate("month_main")."\";");
00070
00071
00072
00073 eval ("\$main = \"".$Gui->getTemplate("frames_set")."\";");
00074
00075 eval("doOutput(\"".$Gui->getTemplate("main")."\");");
00076
00077 exit;
00078 ?>