require_variable($_REQUEST['action']);
optional_variable($_REQUEST['id']);
+ optional_variable($_REQUEST['type'], 'select');
$_REQUEST['id'] = intval($_REQUEST['id']); // Always a good idea, against SQL injections
if(!$site = get_site()) {
// START: Last column (3-month display)
echo '<td style="vertical-align: top; width: 180px;">';
- // [pj] There is a whole class of problems with minimonths in event.php, which
- // was why there were no minimonths before... I fixed them as best I could for now.
-
- // These were left out, and the whole thing was simply broken
$defaultcourses = calendar_get_default_courses();
echo calendar_overlib_html();
calendar_set_filters($courses, $groups, $users, $defaultcourses, $defaultcourses);
print_side_block_start(get_string('monthlyview', 'calendar'), '', 'sideblockmain');
list($prevmon, $prevyr) = calendar_sub_month($mon, $yr);
list($nextmon, $nextyr) = calendar_add_month($mon, $yr);
- // This is also broken; set.php doesn't know how to redirect back to event.php
- // echo calendar_filter_controls('event');
+
+ echo calendar_filter_controls('event', 'action='.$_REQUEST['action'].'&type='.$_REQUEST['type'].'&id='.$_REQUEST['id']);
echo '<p>';
echo calendar_top_controls('display', array('m' => $prevmon, 'y' => $prevyr));
echo calendar_get_mini($courses, $groups, $users, $prevmon, $prevyr);
}
switch($_GET['from']) {
+ case 'event':
+ redirect(CALENDAR_URL.'event.php?action='.$_GET['action'].'&type='.$_GET['type'].'&id='.intval($_GET['id']));
+ break;
case 'month':
- redirect($CFG->wwwroot.'/calendar/view.php?view=month&cal_d='.$_GET['cal_d'].'&cal_m='.$_GET['cal_m'].'&cal_y='.$_GET['cal_y']);
+ redirect(CALENDAR_URL.'view.php?view=month&cal_d='.$_GET['cal_d'].'&cal_m='.$_GET['cal_m'].'&cal_y='.$_GET['cal_y']);
break;
case 'upcoming':
- redirect($CFG->wwwroot.'/calendar/view.php?view=upcoming');
+ redirect(CALENDAR_URL.'view.php?view=upcoming');
break;
case 'day':
- redirect($CFG->wwwroot.'/calendar/view.php?view=day&cal_d='.$_GET['cal_d'].'&cal_m='.$_GET['cal_m'].'&cal_y='.$_GET['cal_y']);
+ redirect(CALENDAR_URL.'view.php?view=day&cal_d='.$_GET['cal_d'].'&cal_m='.$_GET['cal_m'].'&cal_y='.$_GET['cal_y']);
break;
case 'course':
- redirect($CFG->wwwroot.'/course/view.php?id='.intval($_GET['id']));
+ redirect(CALENDAR_URL.'view.php?id='.intval($_GET['id']));
break;
default: