mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
1314 lines
54 KiB
PHP
1314 lines
54 KiB
PHP
<?php // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// NOTICE OF COPYRIGHT //
|
|
// //
|
|
// Moodle - Calendar extension //
|
|
// //
|
|
// Copyright (C) 2003-2004 Greek School Network www.sch.gr //
|
|
// //
|
|
// Designed by: //
|
|
// Avgoustos Tsinakos (tsinakos@uom.gr) //
|
|
// Jon Papaioannou (pj@uom.gr) //
|
|
// //
|
|
// Programming and development: //
|
|
// Jon Papaioannou (pj@uom.gr) //
|
|
// //
|
|
// For bugs, suggestions, etc contact: //
|
|
// Jon Papaioannou (pj@uom.gr) //
|
|
// //
|
|
// The current module was developed at the University of Macedonia //
|
|
// (www.uom.gr) under the funding of the Greek School Network (www.sch.gr) //
|
|
// The aim of this project is to provide additional and improved //
|
|
// functionality to the Asynchronous Distance Education service that the //
|
|
// Greek School Network deploys. //
|
|
// //
|
|
// 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. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License for more details: //
|
|
// //
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
// //
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// These are read by the administration component to provide default values
|
|
define('CALENDAR_DEFAULT_UPCOMING_LOOKAHEAD', 21);
|
|
define('CALENDAR_DEFAULT_UPCOMING_MAXEVENTS', 10);
|
|
define('CALENDAR_DEFAULT_STARTING_WEEKDAY', 1);
|
|
// This is a packed bitfield: day X is "weekend" if $field & (1 << X) is true
|
|
// Default value = 65 = 64 + 1 = 2^6 + 2^0 = Saturday & Sunday
|
|
define('CALENDAR_DEFAULT_WEEKEND', 65);
|
|
|
|
// Fetch the correct values from admin settings/lang pack
|
|
// If no such settings found, use the above defaults
|
|
$firstday = isset($CFG->calendar_startwday) ? $CFG->calendar_startwday : get_string('firstdayofweek');
|
|
if(!is_numeric($firstday)) {
|
|
define ('CALENDAR_STARTING_WEEKDAY', CALENDAR_DEFAULT_STARTING_WEEKDAY);
|
|
}
|
|
else {
|
|
define ('CALENDAR_STARTING_WEEKDAY', intval($firstday) % 7);
|
|
}
|
|
define ('CALENDAR_UPCOMING_DAYS', isset($CFG->calendar_lookahead) ? intval($CFG->calendar_lookahead) : CALENDAR_DEFAULT_UPCOMING_LOOKAHEAD);
|
|
define ('CALENDAR_UPCOMING_MAXEVENTS', isset($CFG->calendar_maxevents) ? intval($CFG->calendar_maxevents) : CALENDAR_DEFAULT_UPCOMING_MAXEVENTS);
|
|
define ('CALENDAR_WEEKEND', isset($CFG->calendar_weekend) ? intval($CFG->calendar_weekend) : CALENDAR_DEFAULT_WEEKEND);
|
|
define ('CALENDAR_URL', $CFG->wwwroot.'/calendar/');
|
|
define ('CALENDAR_TF_24', '%H:%M');
|
|
define ('CALENDAR_TF_12', '%I:%M %p');
|
|
|
|
// Initialize the session variables here to be sure
|
|
calendar_session_vars();
|
|
|
|
function calendar_get_mini($courses, $groups, $users, $cal_month = false, $cal_year = false) {
|
|
global $CFG, $USER;
|
|
|
|
$display = &New stdClass;
|
|
$display->minwday = get_user_preferences('calendar_startwday', CALENDAR_STARTING_WEEKDAY);
|
|
$display->maxwday = $display->minwday + 6;
|
|
|
|
$content = '';
|
|
|
|
if(!empty($cal_month) && !empty($cal_year)) {
|
|
$thisdate = usergetdate(time()); // Date and time the user sees at his location
|
|
if($cal_month == $thisdate['mon'] && $cal_year == $thisdate['year']) {
|
|
// Navigated to this month
|
|
$date = $thisdate;
|
|
$display->thismonth = true;
|
|
}
|
|
else {
|
|
// Navigated to other month, let's do a nice trick and save us a lot of work...
|
|
if(!checkdate($cal_month, 1, $cal_year)) {
|
|
$date = array('mday' => 1, 'mon' => $thisdate['mon'], 'year' => $thisdate['year']);
|
|
$display->thismonth = true;
|
|
}
|
|
else {
|
|
$date = array('mday' => 1, 'mon' => $cal_month, 'year' => $cal_year);
|
|
$display->thismonth = false;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
$date = usergetdate(time()); // Date and time the user sees at his location
|
|
$display->thismonth = true;
|
|
}
|
|
|
|
// Fill in the variables we 're going to use, nice and tidy
|
|
list($d, $m, $y) = array($date['mday'], $date['mon'], $date['year']); // This is what we want to display
|
|
$display->maxdays = calendar_days_in_month($m, $y);
|
|
|
|
// We 'll keep these values as GMT here, and offset them when the time comes to query the db
|
|
$display->tstart = gmmktime(0, 0, 0, $m, 1, $y); // This is GMT
|
|
$display->tend = gmmktime(23, 59, 59, $m, $display->maxdays, $y); // GMT
|
|
|
|
$startwday = gmdate('w', $display->tstart); // $display->tstart is already GMT, so don't use date(): messes with server's TZ
|
|
|
|
// Align the starting weekday to fall in our display range
|
|
// This is simple, not foolproof.
|
|
if($startwday < $display->minwday) {
|
|
$startwday += 7;
|
|
}
|
|
|
|
// Get the events matching our criteria. Don't forget to offset the timestamps for the user's TZ!
|
|
$whereclause = calendar_sql_where(usertime($display->tstart), usertime($display->tend), $users, $groups, $courses);
|
|
|
|
if($whereclause === false) {
|
|
$events = array();
|
|
}
|
|
else {
|
|
$events = get_records_select('event', $whereclause, 'timestart');
|
|
}
|
|
|
|
// This is either a genius idea or an idiot idea: in order to not complicate things, we use this rule: if, after
|
|
// possibly removing SITEID from $courses, there is only one course left, then clicking on a day in the month
|
|
// will also set the $SESSION->cal_courses_shown variable to that one course. Otherwise, we 'd need to add extra
|
|
// arguments to this function.
|
|
|
|
$morehref = '';
|
|
if(!empty($courses)) {
|
|
$courses = array_diff($courses, array(SITEID));
|
|
if(count($courses) == 1) {
|
|
$morehref = '&course='.reset($courses);
|
|
}
|
|
}
|
|
|
|
// We want to have easy access by day, since the display is on a per-day basis.
|
|
// Arguments passed by reference.
|
|
//calendar_events_by_day($events, $display->tstart, $eventsbyday, $durationbyday, $typesbyday);
|
|
calendar_events_by_day($events, $m, $y, $eventsbyday, $durationbyday, $typesbyday);
|
|
|
|
$content .= '<table class="minicalendar">'; // Begin table
|
|
$content .= '<tr class="weekdays">'; // Header row: day names
|
|
|
|
// Print out the names of the weekdays
|
|
$days = array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat');
|
|
for($i = $display->minwday; $i <= $display->maxwday; ++$i) {
|
|
// This uses the % operator to get the correct weekday no matter what shift we have
|
|
// applied to the $display->minwday : $display->maxwday range from the default 0 : 6
|
|
$content .= '<th>'.get_string($days[$i % 7], 'calendar').'</th>';
|
|
}
|
|
|
|
$content .= '</tr><tr>'; // End of day names; prepare for day numbers
|
|
|
|
// For the table display. $week is the row; $dayweek is the column.
|
|
$dayweek = $startwday;
|
|
|
|
// Paddding (the first week may have blank days in the beginning)
|
|
for($i = $display->minwday; $i < $startwday; ++$i) {
|
|
$content .= '<td> </td>'."\n";
|
|
}
|
|
|
|
$strftimetimedayshort = get_string('strftimedayshort');
|
|
|
|
// Now display all the calendar
|
|
for($day = 1; $day <= $display->maxdays; ++$day, ++$dayweek) {
|
|
if($dayweek > $display->maxwday) {
|
|
// We need to change week (table row)
|
|
$content .= '</tr><tr>';
|
|
$dayweek = $display->minwday;
|
|
}
|
|
|
|
// Reset vars
|
|
$cell = '';
|
|
if(CALENDAR_WEEKEND & (1 << ($dayweek % 7))) {
|
|
// Weekend. This is true no matter what the exact range is.
|
|
$class = 'weekend';
|
|
}
|
|
else {
|
|
// Normal working day.
|
|
$class = '';
|
|
}
|
|
|
|
// Special visual fx if an event is defined
|
|
if(isset($eventsbyday[$day])) {
|
|
$dayhref = calendar_get_link_href(CALENDAR_URL.'view.php?view=day'.$morehref.'&', $day, $m, $y);
|
|
|
|
// OverLib popup
|
|
$popupcontent = '';
|
|
foreach($eventsbyday[$day] as $eventid) {
|
|
if (!isset($events[$eventid])) {
|
|
continue;
|
|
}
|
|
$event = $events[$eventid];
|
|
if(!empty($event->modulename)) {
|
|
$popupicon = $CFG->modpixpath.'/'.$event->modulename.'/icon.gif';
|
|
$popupalt = $event->modulename;
|
|
|
|
} else if ($event->courseid == SITEID) { // Site event
|
|
$popupicon = $CFG->pixpath.'/c/site.gif';
|
|
$popupalt = '';
|
|
} else if ($event->courseid != 0 && $event->courseid != SITEID && $event->groupid == 0) { // Course event
|
|
$popupicon = $CFG->pixpath.'/c/course.gif';
|
|
$popupalt = '';
|
|
} else if ($event->groupid) { // Group event
|
|
$popupicon = $CFG->pixpath.'/c/group.gif';
|
|
$popupalt = '';
|
|
} else if ($event->userid) { // User event
|
|
$popupicon = $CFG->pixpath.'/c/user.gif';
|
|
$popupalt = '';
|
|
}
|
|
$popupcontent .= '<div><img height="16" width="16" src="'.$popupicon.'" style="vertical-align: middle; margin-right: 4px;" alt="'.$popupalt.'" /><a href="'.$dayhref.'">'.$event->name.'</a></div>';
|
|
}
|
|
|
|
$popupcaption = get_string('eventsfor', 'calendar', userdate($events[$eventid]->timestart, $strftimetimedayshort));
|
|
$popupcontent = str_replace("'", "\'", htmlspecialchars($popupcontent));
|
|
$popup = 'onmouseover="return overlib(\''.$popupcontent.'\', CAPTION, \''.$popupcaption.'\');" onmouseout="return nd();"';
|
|
|
|
// Class and cell content
|
|
if(isset($typesbyday[$day]['startglobal'])) {
|
|
$class .= ' event_global';
|
|
}
|
|
else if(isset($typesbyday[$day]['startcourse'])) {
|
|
$class .= ' event_course';
|
|
}
|
|
else if(isset($typesbyday[$day]['startgroup'])) {
|
|
$class .= ' event_group';
|
|
}
|
|
else if(isset($typesbyday[$day]['startuser'])) {
|
|
$class .= ' event_user';
|
|
}
|
|
$cell = '<div class="day"><a href="'.$dayhref.'" '.$popup.'>'.$day.'</a></div>';
|
|
}
|
|
else {
|
|
$cell = '<div class="day">'.$day.'</div>';
|
|
}
|
|
|
|
if(isset($typesbyday[$day]['durationglobal'])) {
|
|
$class .= ' duration_global';
|
|
}
|
|
else if(isset($typesbyday[$day]['durationcourse'])) {
|
|
$class .= ' duration_course';
|
|
}
|
|
else if(isset($typesbyday[$day]['durationgroup'])) {
|
|
$class .= ' duration_group';
|
|
}
|
|
else if(isset($typesbyday[$day]['durationuser'])) {
|
|
$class .= ' duration_user';
|
|
}
|
|
|
|
// Special visual fx for today
|
|
if($display->thismonth && $day == $d) {
|
|
$class .= ' today';
|
|
}
|
|
|
|
// Just display it
|
|
if(!empty($class)) {
|
|
$class = ' class="'.$class.'"';
|
|
}
|
|
$content .= '<td'.$class.'>'.$cell."</td>\n";
|
|
}
|
|
|
|
// Paddding (the last week may have blank days at the end)
|
|
for($i = $dayweek; $i <= $display->maxwday; ++$i) {
|
|
$content .= '<td> </td>';
|
|
}
|
|
$content .= '</tr>'; // Last row ends
|
|
|
|
$content .= '</table>'; // Tabular display of days ends
|
|
|
|
return $content;
|
|
}
|
|
|
|
function calendar_get_upcoming($courses, $groups, $users, $daysinfuture, $maxevents, $fromtime=0) {
|
|
global $CFG;
|
|
|
|
$display = &New stdClass;
|
|
$display->range = $daysinfuture; // How many days in the future we 'll look
|
|
$display->maxevents = $maxevents;
|
|
|
|
$output = array();
|
|
|
|
// Prepare "course caching", since it may save us a lot of queries
|
|
$coursecache = array();
|
|
|
|
$processed = 0;
|
|
$now = time(); // We 'll need this later
|
|
$usermidnighttoday = usergetmidnight($now);
|
|
|
|
if ($fromtime) {
|
|
$display->tstart = $fromtime;
|
|
} else {
|
|
$display->tstart = $usermidnighttoday;
|
|
}
|
|
|
|
// This does include DST compensation, but unfortunately only with respect to the server's TZ
|
|
$display->tend = strtotime('+'.$display->range.' days', $display->tstart) - 1;
|
|
|
|
// Get the events matching our criteria
|
|
$whereclause = calendar_sql_where($display->tstart, $display->tend, $users, $groups, $courses);
|
|
if ($whereclause === false) {
|
|
$events = false;
|
|
} else {
|
|
$events = get_records_select('event', $whereclause, 'timestart');
|
|
}
|
|
|
|
// This is either a genius idea or an idiot idea: in order to not complicate things, we use this rule: if, after
|
|
// possibly removing SITEID from $courses, there is only one course left, then clicking on a day in the month
|
|
// will also set the $SESSION->cal_courses_shown variable to that one course. Otherwise, we 'd need to add extra
|
|
// arguments to this function.
|
|
|
|
$morehref = '';
|
|
if(!empty($courses)) {
|
|
$courses = array_diff($courses, array(SITEID));
|
|
if(count($courses) == 1) {
|
|
$morehref = '&course='.reset($courses);
|
|
}
|
|
}
|
|
|
|
if($events !== false) {
|
|
foreach($events as $event) {
|
|
|
|
if($processed >= $display->maxevents) {
|
|
break;
|
|
}
|
|
|
|
$event->time = calendar_format_event_time($event, $now, $morehref);
|
|
$output[] = $event;
|
|
++$processed;
|
|
}
|
|
}
|
|
return $output;
|
|
}
|
|
|
|
function calendar_add_event_metadata($event) {
|
|
global $CFG;
|
|
if(!empty($event->modulename)) { // Activity event
|
|
// The module name is set. I will assume that it has to be displayed, and
|
|
// also that it is an automatically-generated event. And of course that the
|
|
// fields for get_coursemodule_from_instance are set correctly.
|
|
$module = calendar_get_module_cached($coursecache, $event->modulename, $event->instance);
|
|
|
|
if ($module === false) {
|
|
return;
|
|
}
|
|
|
|
$modulename = get_string('modulename', $event->modulename);
|
|
$eventtype = get_string($event->eventtype, $event->modulename);
|
|
$icon = $CFG->modpixpath.'/'.$event->modulename.'/icon.gif';
|
|
|
|
$event->icon = '<img height="16" width="16" src="'.$icon.'" alt="" title="'.$modulename.'" style="vertical-align: middle;" />';
|
|
$event->referer = '<a href="'.$CFG->wwwroot.'/mod/'.$event->modulename.'/view.php?id='.$module->id.'">'.$event->name.'</a>';
|
|
$event->courselink = '<a href="'.$CFG->wwwroot.'/course/view.php?id='.$module->course.'">'.$coursecache[$module->course]->fullname.'</a>';
|
|
$event->cmid = $module->id;
|
|
|
|
|
|
} else if($event->courseid == SITEID) { // Site event
|
|
$event->icon = '<img height="16" width="16" src="'.$CFG->pixpath.'/c/site.gif" alt="" style="vertical-align: middle;" />';
|
|
|
|
} else if($event->courseid != 0 && $event->courseid != SITEID && $event->groupid == 0) { // Course event
|
|
calendar_get_course_cached($coursecache, $event->courseid);
|
|
$event->icon = '<img height="16" width="16" src="'.$CFG->pixpath.'/c/course.gif" alt="" style="vertical-align: middle;" />';
|
|
$event->courselink = '<a href="'.$CFG->wwwroot.'/course/view.php?id='.$event->courseid.'">'.$coursecache[$event->courseid]->fullname.'</a>';
|
|
|
|
} else if ($event->groupid) { // Group event
|
|
$event->icon = '<img height="16" width="16" src="'.$CFG->pixpath.'/c/group.gif" alt="" style="vertical-align: middle;" />';
|
|
|
|
} else if($event->userid) { // User event
|
|
$event->icon = '<img height="16" width="16" src="'.$CFG->pixpath.'/c/user.gif" alt="" style="vertical-align: middle;" />';
|
|
}
|
|
|
|
return $event;
|
|
}
|
|
|
|
function calendar_print_event($event) {
|
|
global $CFG, $USER;
|
|
|
|
static $strftimetime;
|
|
|
|
$event = calendar_add_event_metadata($event);
|
|
echo '<table class="eventfull">';
|
|
echo '<tr><td class="eventfullpicture">';
|
|
if (!empty($event->icon)) {
|
|
echo $event->icon;
|
|
} else {
|
|
print_spacer(16,16);
|
|
}
|
|
echo '</td>';
|
|
echo '<td class="eventfullheader">';
|
|
|
|
if (!empty($event->referer)) {
|
|
echo '<div class="referer">'.$event->referer.'</div>';
|
|
} else {
|
|
echo '<div style="float:left;" class="event">'.$event->name."</div>";
|
|
}
|
|
if (!empty($event->courselink)) {
|
|
echo '<div style="float:left; clear: left; font-size: 0.8em;">'.$event->courselink.' </div>';
|
|
}
|
|
if (!empty($event->time)) {
|
|
echo '<span style="float:right;" class="event_date">'.$event->time.'</span>';
|
|
} else {
|
|
echo '<span style="float:right;" class="event_date">'.calendar_time_representation($event->timestart).'</span>';
|
|
}
|
|
|
|
echo "</td></tr>";
|
|
echo "<tr><td valign=\"top\" class=\"eventfullside\" width=\"32\"> </td>";
|
|
echo "<td class=\"eventfullmessage\">\n";
|
|
echo format_text($event->description, FORMAT_HTML);
|
|
if (calendar_edit_event_allowed($event)) {
|
|
echo '<div align="right">';
|
|
if (empty($event->cmid)) {
|
|
$editlink = CALENDAR_URL.'event.php?action=edit&id='.$event->id;
|
|
$deletelink = CALENDAR_URL.'event.php?action=delete&id='.$event->id;
|
|
} else {
|
|
$editlink = $CFG->wwwroot.'/course/mod.php?update='.$event->cmid.'&return=true&sesskey='.$USER->sesskey;
|
|
$deletelink = $CFG->wwwroot.'/course/mod.php?delete='.$event->cmid.'&sesskey='.$USER->sesskey;;
|
|
}
|
|
echo ' <a href="'.$editlink.'"><img
|
|
src="'.$CFG->pixpath.'/t/edit.gif" alt="'.get_string('tt_editevent', 'calendar').'"
|
|
title="'.get_string('tt_editevent', 'calendar').'" /></a>';
|
|
echo ' <a href="'.$deletelink.'"><img
|
|
src="'.$CFG->pixpath.'/t/delete.gif" alt="'.get_string('tt_deleteevent', 'calendar').'"
|
|
title="'.get_string('tt_deleteevent', 'calendar').'" /></a>';
|
|
echo '</div>';
|
|
}
|
|
echo '</td></tr></table>';
|
|
|
|
}
|
|
|
|
function calendar_sql_where($tstart, $tend, $users, $groups, $courses, $withduration=true, $ignorehidden=true) {
|
|
$whereclause = '';
|
|
// Quick test
|
|
if(is_bool($users) && is_bool($groups) && is_bool($courses)) {
|
|
return false;
|
|
}
|
|
|
|
if(is_array($users) && !empty($users)) {
|
|
// Events from a number of users
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' userid IN ('.implode(',', $users).') AND courseid = 0 AND groupid = 0';
|
|
}
|
|
else if(is_numeric($users)) {
|
|
// Events from one user
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' userid = '.$users.' AND courseid = 0 AND groupid = 0';
|
|
}
|
|
else if($users === true) {
|
|
// Events from ALL users
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' userid != 0 AND courseid = 0 AND groupid = 0';
|
|
}
|
|
else if($users === false) {
|
|
// No user at all
|
|
// No need to do anything
|
|
}
|
|
|
|
if(is_array($groups) && !empty($groups)) {
|
|
// Events from a number of groups
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' groupid IN ('.implode(',', $groups).')';
|
|
}
|
|
else if(is_numeric($groups)) {
|
|
// Events from one group
|
|
if(!empty($whereclause)) $whereclause .= ' OR ';
|
|
$whereclause .= ' groupid = '.$groups;
|
|
}
|
|
else if($groups === true) {
|
|
// Events from ALL groups
|
|
if(!empty($whereclause)) $whereclause .= ' OR ';
|
|
$whereclause .= ' groupid != 0';
|
|
}
|
|
// boolean false (no groups at all): we don't need to do anything
|
|
|
|
if(is_array($courses)) {
|
|
// A number of courses (maybe none at all!)
|
|
if(!empty($courses)) {
|
|
if(!empty($whereclause)) {
|
|
$whereclause .= ' OR';
|
|
}
|
|
$whereclause .= ' groupid = 0 AND courseid IN ('.implode(',', $courses).')';
|
|
}
|
|
else {
|
|
// This means NO courses, not that we don't care!
|
|
// No need to do anything
|
|
}
|
|
}
|
|
else if(is_numeric($courses)) {
|
|
// One course
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' groupid = 0 AND courseid = '.$courses;
|
|
}
|
|
else if($courses === true) {
|
|
// Events from ALL courses
|
|
if(!empty($whereclause)) $whereclause .= ' OR';
|
|
$whereclause .= ' groupid = 0 AND courseid != 0';
|
|
}
|
|
|
|
// Security check: if, by now, we have NOTHING in $whereclause, then it means
|
|
// that NO event-selecting clauses were defined. Thus, we won't be returning ANY
|
|
// events no matter what. Allowing the code to proceed might return a completely
|
|
// valid query with only time constraints, thus selecting ALL events in that time frame!
|
|
if(empty($whereclause)) {
|
|
return false;
|
|
}
|
|
|
|
if ($ignorehidden) {
|
|
if (!empty($whereclause)) $whereclause .= ' AND';
|
|
$whereclause .= ' visible = 1';
|
|
}
|
|
|
|
if($withduration) {
|
|
$timeclause = 'timestart + timeduration >= '.$tstart.' AND timestart <= '.$tend;
|
|
}
|
|
else {
|
|
$timeclause = 'timestart >= '.$tstart.' AND timestart <= '.$tend;
|
|
}
|
|
if(!empty($whereclause)) {
|
|
// We have additional constraints
|
|
$whereclause = $timeclause.' AND ('.$whereclause.')';
|
|
}
|
|
else {
|
|
// Just basic time filtering
|
|
$whereclause = $timeclause;
|
|
}
|
|
|
|
return empty($whereclause) ? false : $whereclause;
|
|
}
|
|
|
|
function calendar_top_controls($type, $data) {
|
|
global $CFG;
|
|
$content = '';
|
|
if(!isset($data['d'])) {
|
|
$data['d'] = 1;
|
|
}
|
|
$time = calendar_mktime_check($data['m'], $data['d'], $data['y']);
|
|
$date = getdate($time);
|
|
$data['m'] = $date['mon'];
|
|
$data['y'] = $date['year'];
|
|
|
|
switch($type) {
|
|
case 'frontpage':
|
|
list($prevmonth, $prevyear) = calendar_sub_month($data['m'], $data['y']);
|
|
list($nextmonth, $nextyear) = calendar_add_month($data['m'], $data['y']);
|
|
$nextlink = calendar_get_link_tag('>>', 'index.php?', 0, $nextmonth, $nextyear);
|
|
$prevlink = calendar_get_link_tag('<<', 'index.php?', 0, $prevmonth, $prevyear);
|
|
$content .= '<table class="generaltable" style="width: 100%;"><tr>';
|
|
$content .= '<td style="text-align: left; width: 12%;">'.$prevlink."</td>\n";
|
|
$content .= '<td style="text-align: center;"><a href="'.calendar_get_link_href(CALENDAR_URL.'view.php?view=month&', 1, $data['m'], $data['y']).'">'.strftime(get_string('strftimemonthyear'), $time)."</a></td>\n";
|
|
$content .= '<td style="text-align: right; width: 12%;">'.$nextlink."</td>\n";
|
|
$content .= '</tr></table>';
|
|
break;
|
|
case 'course':
|
|
list($prevmonth, $prevyear) = calendar_sub_month($data['m'], $data['y']);
|
|
list($nextmonth, $nextyear) = calendar_add_month($data['m'], $data['y']);
|
|
$nextlink = calendar_get_link_tag('>>', 'view.php?id='.$data['id'].'&', 0, $nextmonth, $nextyear);
|
|
$prevlink = calendar_get_link_tag('<<', 'view.php?id='.$data['id'].'&', 0, $prevmonth, $prevyear);
|
|
$content .= '<table class="generaltable" style="width: 100%;"><tr>';
|
|
$content .= '<td style="text-align: left; width: 12%;">'.$prevlink."</td>\n";
|
|
$content .= '<td style="text-align: center;"><a href="'.calendar_get_link_href(CALENDAR_URL.'view.php?view=month&course='.$data['id'].'&', 1, $data['m'], $data['y']).'">'.strftime(get_string('strftimemonthyear'), $time)."</a></td>\n";
|
|
$content .= '<td style="text-align: right; width: 12%;">'.$nextlink."</td>\n";
|
|
$content .= '</tr></table>';
|
|
break;
|
|
case 'upcoming':
|
|
$content .= '<div style="text-align: center;"><a href="'.CALENDAR_URL.'view.php?view=upcoming">'.strftime(get_string('strftimemonthyear'), $time)."</a></div>\n";
|
|
break;
|
|
case 'display':
|
|
$content .= '<div style="text-align: center;"><a href="'.calendar_get_link_href(CALENDAR_URL.'view.php?view=month&', 1, $data['m'], $data['y']).'">'.strftime(get_string('strftimemonthyear'), $time)."</a></div>\n";
|
|
break;
|
|
case 'month':
|
|
list($prevmonth, $prevyear) = calendar_sub_month($data['m'], $data['y']);
|
|
list($nextmonth, $nextyear) = calendar_add_month($data['m'], $data['y']);
|
|
$prevdate = calendar_mktime_check($prevmonth, 1, $prevyear);
|
|
$nextdate = calendar_mktime_check($nextmonth, 1, $nextyear);
|
|
$content .= "<table style='width: 100%;'><tr>\n";
|
|
$content .= '<td style="text-align: left; width: 30%;"><a href="'.calendar_get_link_href('view.php?view=month&', 1, $prevmonth, $prevyear).'"><< '.strftime(get_string('strftimemonthyear'), $prevdate)."</a></td>\n";
|
|
$content .= '<td style="text-align: center"><strong>'.strftime(get_string('strftimemonthyear'), $time)."</strong></td>\n";
|
|
$content .= '<td style="text-align: right; width: 30%;"><a href="'.calendar_get_link_href('view.php?view=month&', 1, $nextmonth, $nextyear).'">'.strftime(get_string('strftimemonthyear'), $nextdate)." >></a></td>\n";
|
|
$content .= "</tr></table>\n";
|
|
break;
|
|
case 'day':
|
|
$data['d'] = $date['mday']; // Just for convenience
|
|
$dayname = calendar_wday_name($date['weekday']);
|
|
$prevdate = getdate(make_timestamp($data['y'], $data['m'], $data['d'] - 1));
|
|
$nextdate = getdate(make_timestamp($data['y'], $data['m'], $data['d'] + 1));
|
|
$prevname = calendar_wday_name($prevdate['weekday']);
|
|
$nextname = calendar_wday_name($nextdate['weekday']);
|
|
$content .= "<table style='width: 100%;'><tr>\n";
|
|
$content .= '<td style="text-align: left; width: 20%;"><a href="'.calendar_get_link_href('view.php?view=day&', $prevdate['mday'], $prevdate['mon'], $prevdate['year']).'"><< '.$prevname."</a></td>\n";
|
|
|
|
// Get the format string
|
|
$text = get_string('strftimedaydate');
|
|
// Regexp hackery to make a link out of the month/year part
|
|
$text = ereg_replace('(%B.+%Y|%Y.+%B|%Y.+%m[^ ]+)', '<a href="'.calendar_get_link_href('view.php?view=month&', 1, $data['m'], $data['y']).'">\\1</a>', $text);
|
|
// Replace with actual values and lose any day leading zero
|
|
$text = strftime($text, $time);
|
|
$text = str_replace(' 0', ' ', $text);
|
|
// Print the actual thing
|
|
$content .= '<td style="text-align: center"><strong>'.$text."</strong></td>\n";
|
|
|
|
$content .= '<td style="text-align: right; width: 20%;"><a href="'.calendar_get_link_href('view.php?view=day&', $nextdate['mday'], $nextdate['mon'], $nextdate['year']).'">'.$nextname." >></a></td>\n";
|
|
$content .= "</tr></table>\n";
|
|
break;
|
|
}
|
|
return $content;
|
|
}
|
|
|
|
function calendar_filter_controls($type, $vars = NULL, $course = NULL) {
|
|
global $CFG, $SESSION, $USER;
|
|
|
|
$groupevents = true;
|
|
$getvars = '';
|
|
|
|
switch($type) {
|
|
case 'event':
|
|
case 'upcoming':
|
|
case 'day':
|
|
case 'month':
|
|
$getvars = '&from='.$type;
|
|
break;
|
|
case 'course':
|
|
if (isset($_GET['id'])) {
|
|
$getvars = '&from=course&id='.$_GET['id'];
|
|
} else {
|
|
$getvars = '&from=course';
|
|
}
|
|
if (isset($course->groupmode) and !$course->groupmode and $course->groupmodeforce) {
|
|
$groupevents = false;
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (!empty($vars)) {
|
|
$getvars .= '&'.$vars;
|
|
}
|
|
|
|
$content = '<table>';
|
|
|
|
$content .= '<tr>';
|
|
if($SESSION->cal_show_global) {
|
|
$content .= '<td class="event_global" style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showglobal'.$getvars.'" title="'.get_string('tt_hideglobal', 'calendar').'">'.get_string('globalevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
else {
|
|
$content .= '<td style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showglobal'.$getvars.'" title="'.get_string('tt_showglobal', 'calendar').'">'.get_string('globalevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
if($SESSION->cal_show_course) {
|
|
$content .= '<td class="event_course" style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showcourses'.$getvars.'" title="'.get_string('tt_hidecourse', 'calendar').'">'.get_string('courseevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
else {
|
|
$content .= '<td style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showcourses'.$getvars.'" title="'.get_string('tt_showcourse', 'calendar').'">'.get_string('courseevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
|
|
if(!empty($USER->id) && !isguest()) {
|
|
$content .= "</tr>\n<tr>";
|
|
|
|
if($groupevents) {
|
|
// This course MIGHT have group events defined, so show the filter
|
|
if($SESSION->cal_show_groups) {
|
|
$content .= '<td class="event_group" style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showgroups'.$getvars.'" title="'.get_string('tt_hidegroups', 'calendar').'">'.get_string('groupevents', 'calendar').'</a></td>'."\n";
|
|
} else {
|
|
$content .= '<td style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showgroups'.$getvars.'" title="'.get_string('tt_showgroups', 'calendar').'">'.get_string('groupevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
if ($SESSION->cal_show_user) {
|
|
$content .= '<td class="event_user" style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showuser'.$getvars.'" title="'.get_string('tt_hideuser', 'calendar').'">'.get_string('userevents', 'calendar').'</a></td>'."\n";
|
|
} else {
|
|
$content .= '<td style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showuser'.$getvars.'" title="'.get_string('tt_showuser', 'calendar').'">'.get_string('userevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
|
|
} else {
|
|
// This course CANNOT have group events, so lose the filter
|
|
$content .= '<td style="width: 8px;"></td><td> </td>'."\n";
|
|
|
|
if($SESSION->cal_show_user) {
|
|
$content .= '<td class="event_user" style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showuser'.$getvars.'" title="'.get_string('tt_hideuser', 'calendar').'">'.get_string('userevents', 'calendar').'</a></td>'."\n";
|
|
} else {
|
|
$content .= '<td style="width: 8px;"></td><td><a href="'.CALENDAR_URL.'set.php?var=showuser'.$getvars.'" title="'.get_string('tt_showuser', 'calendar').'">'.get_string('userevents', 'calendar').'</a></td>'."\n";
|
|
}
|
|
}
|
|
}
|
|
$content .= "</tr>\n</table>\n";
|
|
|
|
return $content;
|
|
}
|
|
|
|
function calendar_day_representation($tstamp, $now = false, $usecommonwords = true) {
|
|
|
|
static $shortformat;
|
|
if(empty($shortformat)) {
|
|
$shortformat = get_string('strftimedayshort');
|
|
}
|
|
|
|
if($now === false) {
|
|
$now = time();
|
|
}
|
|
|
|
// To have it in one place, if a change is needed
|
|
$formal = userdate($tstamp, $shortformat);
|
|
|
|
$datestamp = usergetdate($tstamp);
|
|
$datenow = usergetdate($now);
|
|
|
|
if($usecommonwords == false) {
|
|
// We don't want words, just a date
|
|
return $formal;
|
|
}
|
|
else if($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday']) {
|
|
// Today
|
|
return get_string('today', 'calendar');
|
|
}
|
|
else if(
|
|
($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday'] - 1 ) ||
|
|
($datestamp['year'] == $datenow['year'] - 1 && $datestamp['mday'] == 31 && $datestamp['mon'] == 12 && $datenow['yday'] == 1)
|
|
) {
|
|
// Yesterday
|
|
return get_string('yesterday', 'calendar');
|
|
}
|
|
else if(
|
|
($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday'] + 1 ) ||
|
|
($datestamp['year'] == $datenow['year'] + 1 && $datenow['mday'] == 31 && $datenow['mon'] == 12 && $datestamp['yday'] == 1)
|
|
) {
|
|
// Tomorrow
|
|
return get_string('tomorrow', 'calendar');
|
|
}
|
|
else {
|
|
return $formal;
|
|
}
|
|
}
|
|
|
|
function calendar_time_representation($time) {
|
|
static $langtimeformat = NULL;
|
|
if($langtimeformat === NULL) {
|
|
$langtimeformat = get_string('strftimetime');
|
|
}
|
|
$timeformat = get_user_preferences('calendar_timeformat');
|
|
// The ? is needed because the preference might be present, but empty
|
|
return userdate($time, empty($timeformat) ? $langtimeformat : $timeformat);
|
|
}
|
|
|
|
function calendar_get_link_href($linkbase, $d, $m, $y) {
|
|
if(empty($linkbase)) return '';
|
|
$paramstr = '';
|
|
if(!empty($d)) $paramstr .= '&cal_d='.$d;
|
|
if(!empty($m)) $paramstr .= '&cal_m='.$m;
|
|
if(!empty($y)) $paramstr .= '&cal_y='.$y;
|
|
if(!empty($paramstr)) $paramstr = substr($paramstr, 5);
|
|
return $linkbase.$paramstr;
|
|
}
|
|
|
|
function calendar_get_link_tag($text, $linkbase, $d, $m, $y) {
|
|
$href = calendar_get_link_href($linkbase, $d, $m, $y);
|
|
if(empty($href)) return $text;
|
|
return '<a href="'.$href.'">'.$text.'</a>';
|
|
}
|
|
|
|
function calendar_gmmktime_check($m, $d, $y, $default = false) {
|
|
if($default === false) $default = time();
|
|
if(!checkdate($m, $d, $y)) {
|
|
return $default;
|
|
}
|
|
else {
|
|
return gmmktime(0, 0, 0, $m, $d, $y, 0);
|
|
}
|
|
}
|
|
|
|
function calendar_mktime_check($m, $d, $y, $default = false) {
|
|
if($default === false) $default = time();
|
|
if(!checkdate($m, $d, $y)) {
|
|
return $default;
|
|
}
|
|
else {
|
|
return mktime(0, 0, 0, $m, $d, $y, 0);
|
|
}
|
|
}
|
|
|
|
function calendar_wday_name($englishname) {
|
|
return get_string(strtolower($englishname), 'calendar');
|
|
}
|
|
|
|
function calendar_days_in_month($month, $year) {
|
|
return intval(date('t', mktime(0, 0, 0, $month, 1, $year)));
|
|
}
|
|
|
|
function calendar_get_sideblock_upcoming($events, $linkhref = NULL) {
|
|
$content = '';
|
|
$lines = count($events);
|
|
if (!$lines) {
|
|
return $content;
|
|
}
|
|
|
|
for ($i = 0; $i < $lines; ++$i) {
|
|
$events[$i] = calendar_add_event_metadata($events[$i]);
|
|
$content .= '<div class="event">'.$events[$i]->icon.' ';
|
|
if (!empty($events[$i]->referer)) {
|
|
// That's an activity event, so let's provide the hyperlink
|
|
$content .= $events[$i]->referer;
|
|
} else {
|
|
if(!empty($linkhref)) {
|
|
$ed = usergetdate($events[$i]->timestart);
|
|
$href = calendar_get_link_href(CALENDAR_URL.$linkhref, $ed['mday'], $ed['mon'], $ed['year']);
|
|
$content .= '<a href="'.$href.'">'.$events[$i]->name.'</a>';
|
|
}
|
|
else {
|
|
$content .= $events[$i]->name;
|
|
}
|
|
}
|
|
$events[$i]->time = str_replace('»', '<br />»', $events[$i]->time);
|
|
$content .= '<div class="date">'.$events[$i]->time.'</div></div>';
|
|
if ($i < $lines - 1) $content .= '<hr />';
|
|
}
|
|
|
|
return $content;
|
|
}
|
|
|
|
function calendar_add_month($month, $year) {
|
|
if($month == 12) {
|
|
return array(1, $year + 1);
|
|
}
|
|
else {
|
|
return array($month + 1, $year);
|
|
}
|
|
}
|
|
|
|
function calendar_sub_month($month, $year) {
|
|
if($month == 1) {
|
|
return array(12, $year - 1);
|
|
}
|
|
else {
|
|
return array($month - 1, $year);
|
|
}
|
|
}
|
|
|
|
function calendar_events_by_day($events, $month, $year, &$eventsbyday, &$durationbyday, &$typesbyday) {
|
|
$eventsbyday = array();
|
|
$typesbyday = array();
|
|
$durationbyday = array();
|
|
|
|
if($events === false) {
|
|
return;
|
|
}
|
|
|
|
foreach($events as $event) {
|
|
|
|
$startdate = usergetdate($event->timestart);
|
|
$enddate = usergetdate($event->timestart + $event->timeduration);
|
|
|
|
// Simple arithmetic: $year * 13 + $month is a distinct integer for each distinct ($year, $month) pair
|
|
if(!($startdate['year'] * 13 + $startdate['mon'] <= $year * 13 + $month) && ($enddate['year'] * 13 + $enddate['mon'] >= $year * 13 + $month)) {
|
|
// Out of bounds
|
|
continue;
|
|
}
|
|
|
|
$eventdaystart = intval($startdate['mday']);
|
|
|
|
if($startdate['mon'] == $month && $startdate['year'] == $year) {
|
|
// Give the event to its day
|
|
$eventsbyday[$eventdaystart][] = $event->id;
|
|
|
|
// Mark the day as having such an event
|
|
if($event->courseid == SITEID && $event->groupid == 0) {
|
|
$typesbyday[$eventdaystart]['startglobal'] = true;
|
|
}
|
|
else if($event->courseid != 0 && $event->courseid != SITEID && $event->groupid == 0) {
|
|
$typesbyday[$eventdaystart]['startcourse'] = true;
|
|
}
|
|
else if($event->groupid) {
|
|
$typesbyday[$eventdaystart]['startgroup'] = true;
|
|
}
|
|
else if($event->userid) {
|
|
$typesbyday[$eventdaystart]['startuser'] = true;
|
|
}
|
|
}
|
|
|
|
if($event->timeduration == 0) {
|
|
// Proceed with the next
|
|
continue;
|
|
}
|
|
|
|
// The event starts on $month $year or before. So...
|
|
$lowerbound = $startdate['mon'] == $month && $startdate['year'] == $year ? intval($startdate['mday']) : 0;
|
|
|
|
// Also, it ends on $month $year or later...
|
|
$upperbound = $enddate['mon'] == $month && $enddate['year'] == $year ? intval($enddate['mday']) : calendar_days_in_month($month, $year);
|
|
|
|
// Mark all days between $lowerbound and $upperbound (inclusive) as duration
|
|
for($i = $lowerbound + 1; $i <= $upperbound; ++$i) {
|
|
$durationbyday[$i][] = $event->id;
|
|
if($event->courseid == SITEID && $event->groupid == 0) {
|
|
$typesbyday[$i]['durationglobal'] = true;
|
|
}
|
|
else if($event->courseid != 0 && $event->courseid != SITEID && $event->groupid == 0) {
|
|
$typesbyday[$i]['durationcourse'] = true;
|
|
}
|
|
else if($event->groupid) {
|
|
$typesbyday[$i]['durationgroup'] = true;
|
|
}
|
|
else if($event->userid) {
|
|
$typesbyday[$i]['durationuser'] = true;
|
|
}
|
|
}
|
|
|
|
}
|
|
return;
|
|
}
|
|
|
|
function calendar_get_module_cached(&$coursecache, $modulename, $instance) {
|
|
$module = get_coursemodule_from_instance($modulename, $instance);
|
|
|
|
if($module === false) return false;
|
|
if(!calendar_get_course_cached($coursecache, $module->course)) {
|
|
return false;
|
|
}
|
|
return $module;
|
|
}
|
|
|
|
function calendar_get_course_cached(&$coursecache, $courseid) {
|
|
if(!isset($coursecache[$courseid])) {
|
|
$coursecache[$courseid] = get_record('course', 'id', $courseid);
|
|
}
|
|
return $coursecache[$courseid];
|
|
}
|
|
|
|
function calendar_session_vars() {
|
|
global $SESSION, $USER;
|
|
|
|
if(!empty($USER->id) && isset($USER->realuser) && !isset($SESSION->cal_loggedinas)) {
|
|
// We just logged in as someone else, update the filtering
|
|
unset($SESSION->cal_users_shown);
|
|
unset($SESSION->cal_courses_shown);
|
|
$SESSION->cal_loggedinas = true;
|
|
if(intval(get_user_preferences('calendar_persistflt', 0))) {
|
|
calendar_set_filters_status(get_user_preferences('calendar_savedflt', 0xff));
|
|
}
|
|
}
|
|
else if(!empty($USER->id) && !isset($USER->realuser) && isset($SESSION->cal_loggedinas)) {
|
|
// We just logged back to our real self, update again
|
|
unset($SESSION->cal_users_shown);
|
|
unset($SESSION->cal_courses_shown);
|
|
unset($SESSION->cal_loggedinas);
|
|
if(intval(get_user_preferences('calendar_persistflt', 0))) {
|
|
calendar_set_filters_status(get_user_preferences('calendar_savedflt', 0xff));
|
|
}
|
|
}
|
|
|
|
if(!isset($SESSION->cal_course_referer)) {
|
|
$SESSION->cal_course_referer = 0;
|
|
}
|
|
if(!isset($SESSION->cal_show_global)) {
|
|
$SESSION->cal_show_global = true;
|
|
}
|
|
if(!isset($SESSION->cal_show_groups)) {
|
|
$SESSION->cal_show_groups = true;
|
|
}
|
|
if(!isset($SESSION->cal_show_course)) {
|
|
$SESSION->cal_show_course = true;
|
|
}
|
|
if(!isset($SESSION->cal_show_user)) {
|
|
$SESSION->cal_show_user = true;
|
|
}
|
|
if(empty($SESSION->cal_courses_shown)) {
|
|
$SESSION->cal_courses_shown = calendar_get_default_courses(true);
|
|
}
|
|
if(empty($SESSION->cal_users_shown)) {
|
|
// The empty() instead of !isset() here makes a whole world of difference,
|
|
// as it will automatically change to the user's id when the user first logs
|
|
// in. With !isset(), it would never do that.
|
|
$SESSION->cal_users_shown = isset($USER->id) ? $USER->id : false;
|
|
}
|
|
else if(is_numeric($SESSION->cal_users_shown) && !empty($USER->id) && $SESSION->cal_users_shown != $USER->id) {
|
|
// Follow the white rabbit, for example if a teacher logs in as a student
|
|
$SESSION->cal_users_shown = $USER->id;
|
|
}
|
|
}
|
|
|
|
function calendar_overlib_html() {
|
|
return '<div id="overDiv" style="position: absolute; visibility: hidden; z-index:1000;"></div>'
|
|
.'<script type="text/javascript" src="'.CALENDAR_URL.'overlib.cfg.php"></script>';
|
|
}
|
|
|
|
function calendar_set_referring_course($courseid) {
|
|
global $SESSION;
|
|
$SESSION->cal_course_referer = intval($courseid);
|
|
}
|
|
|
|
function calendar_set_filters(&$courses, &$group, &$user, $courseeventsfrom = NULL, $groupeventsfrom = NULL, $ignorefilters = false) {
|
|
global $SESSION, $USER;
|
|
|
|
// Insidious bug-wannabe: setting $SESSION->cal_courses_shown to $course->id would cause
|
|
// the code to function incorrectly UNLESS we convert it to an integer. One case where
|
|
// PHP's loose type system works against us.
|
|
if(is_string($SESSION->cal_courses_shown)) {
|
|
$SESSION->cal_courses_shown = intval($SESSION->cal_courses_shown);
|
|
}
|
|
|
|
if($courseeventsfrom === NULL) {
|
|
$courseeventsfrom = $SESSION->cal_courses_shown;
|
|
}
|
|
if($groupeventsfrom === NULL) {
|
|
$groupeventsfrom = $SESSION->cal_courses_shown;
|
|
}
|
|
|
|
if(($SESSION->cal_show_course && $SESSION->cal_show_global) || $ignorefilters) {
|
|
if(is_int($courseeventsfrom)) {
|
|
$courses = array(SITEID, $courseeventsfrom);
|
|
}
|
|
else if(is_array($courseeventsfrom)) {
|
|
$courses = array_keys($courseeventsfrom);
|
|
$courses[] = SITEID;
|
|
}
|
|
}
|
|
else if($SESSION->cal_show_course) {
|
|
if(is_int($courseeventsfrom)) {
|
|
$courses = array($courseeventsfrom);
|
|
}
|
|
else if(is_array($courseeventsfrom)) {
|
|
$courses = array_keys($courseeventsfrom);
|
|
}
|
|
$courses = array_diff($courses, array(SITEID));
|
|
}
|
|
else if($SESSION->cal_show_global) {
|
|
$courses = array(SITEID);
|
|
}
|
|
else {
|
|
$courses = false;
|
|
}
|
|
|
|
if($SESSION->cal_show_user || $ignorefilters) {
|
|
// This doesn't work for arrays yet (maybe someday it will)
|
|
$user = $SESSION->cal_users_shown;
|
|
}
|
|
else {
|
|
$user = false;
|
|
}
|
|
if($SESSION->cal_show_groups || $ignorefilters) {
|
|
if(is_int($groupeventsfrom)) {
|
|
$groupcourses = array($groupeventsfrom);
|
|
}
|
|
else if(is_array($groupeventsfrom)) {
|
|
$groupcourses = array_keys($groupeventsfrom);
|
|
}
|
|
$grouparray = array();
|
|
|
|
// We already have the courses to examine in $courses
|
|
// For each course...
|
|
foreach($groupcourses as $courseid) {
|
|
// If the user is an editing teacher in there,
|
|
if(!empty($USER->id) && isteacheredit($courseid, $USER->id)) {
|
|
// Show events from all groups
|
|
if(($grouprecords = get_groups($courseid)) !== false) {
|
|
$grouparray = array_merge($grouparray, array_keys($grouprecords));
|
|
}
|
|
}
|
|
// Otherwise show events from the group he is a member of
|
|
else if(isset($USER->groupmember[$courseid])) {
|
|
$grouparray[] = $USER->groupmember[$courseid];
|
|
}
|
|
}
|
|
if(empty($grouparray)) {
|
|
$group = false;
|
|
}
|
|
else {
|
|
$group = $grouparray;
|
|
}
|
|
}
|
|
else {
|
|
$group = false;
|
|
}
|
|
}
|
|
|
|
function calendar_edit_event_allowed($event) {
|
|
global $USER;
|
|
|
|
if(empty($USER->id) || isguest($USER->id)) {
|
|
return false;
|
|
}
|
|
|
|
if (isadmin($USER->id)) return true; // Admins are allowed anything
|
|
|
|
if ($event->courseid != 0 && $event->courseid != SITEID) {
|
|
// Course event, only editing teachers may... edit :P
|
|
if(isteacheredit($event->courseid)) {
|
|
return true;
|
|
}
|
|
|
|
} else if($event->courseid == 0 && $event->groupid != 0) {
|
|
// Group event
|
|
$group = get_record('groups', 'id', $event->groupid);
|
|
if($group === false) return false;
|
|
if(isteacheredit($group->courseid)) {
|
|
return true;
|
|
}
|
|
|
|
} else if($event->courseid == 0 && $event->groupid == 0 && $event->userid == $USER->id) {
|
|
// User event, owned by this user
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function calendar_get_default_courses($ignoreref = false) {
|
|
global $USER, $CFG, $SESSION;
|
|
|
|
if(!empty($SESSION->cal_course_referer) && !$ignoreref) {
|
|
return array($SESSION->cal_course_referer => 1);
|
|
}
|
|
|
|
if(empty($USER->id)) {
|
|
return array();
|
|
}
|
|
|
|
$courses = array();
|
|
if(!empty($USER->id) && isadmin($USER->id)) {
|
|
if(!empty($CFG->calendar_adminseesall)) {
|
|
$courses = get_records_sql('SELECT id, 1 FROM '.$CFG->prefix.'course');
|
|
return $courses;
|
|
}
|
|
}
|
|
if(isset($USER->student) && is_array($USER->student)) {
|
|
$courses = $USER->student;
|
|
}
|
|
if(isset($USER->teacher) && is_array($USER->teacher)) {
|
|
$courses = $USER->teacher;
|
|
}
|
|
return $courses;
|
|
}
|
|
|
|
function calendar_preferences_button() {
|
|
global $CFG, $USER;
|
|
|
|
// Guests have no preferences
|
|
if (empty($USER->id) || isguest()) {
|
|
return '';
|
|
}
|
|
|
|
return "<form target=\"$CFG->framename\" method=\"get\" ".
|
|
" action=\"$CFG->wwwroot/calendar/preferences.php\">".
|
|
"<input type=\"submit\" value=\"".get_string("preferences", "calendar")." ...\" /></form>";
|
|
}
|
|
|
|
function calendar_format_event_time($event, $now, $morehref, $usecommonwords = true) {
|
|
$startdate = usergetdate($event->timestart);
|
|
$enddate = usergetdate($event->timestart + $event->timeduration);
|
|
$usermidnightstart = usergetmidnight($event->timestart);
|
|
|
|
if($event->timeduration) {
|
|
// To avoid doing the math if one IF is enough :)
|
|
$usermidnightend = usergetmidnight($event->timestart + $event->timeduration);
|
|
}
|
|
else {
|
|
$usermidnightend = $usermidnightstart;
|
|
}
|
|
|
|
// OK, now to get a meaningful display...
|
|
// First of all we have to construct a human-readable date/time representation
|
|
|
|
if($event->timestart + $event->timeduration < $now) {
|
|
// It has expired, so we don't care about duration
|
|
$day = calendar_day_representation($event->timestart + $event->timeduration, $now, $usecommonwords);
|
|
$time = calendar_time_representation($event->timestart + $event->timeduration);
|
|
|
|
// This var always has the printable time representation
|
|
$eventtime = '<span class="dimmed_text"><a class="dimmed" href="'.calendar_get_link_href(CALENDAR_URL.'view.php?view=day'.$morehref.'&', $enddate['mday'], $enddate['mon'], $enddate['year']).'">'.$day.'</a> ('.$time.')</span>';
|
|
|
|
}
|
|
else if($event->timeduration) {
|
|
// It has a duration
|
|
if($usermidnightstart == $usermidnightend) {
|
|
// But it's all on the same day
|
|
$day = calendar_day_representation($event->timestart, $now, $usecommonwords);
|
|
$timestart = calendar_time_representation($event->timestart);
|
|
$timeend = calendar_time_representation($event->timestart + $event->timeduration);
|
|
|
|
// Set printable representation
|
|
$eventtime = calendar_get_link_tag($day, CALENDAR_URL.'view.php?view=day'.$morehref.'&', $enddate['mday'], $enddate['mon'], $enddate['year']).
|
|
' ('.$timestart.' <strong>»</strong> '.$timeend.')';
|
|
}
|
|
else {
|
|
// It spans two or more days
|
|
$daystart = calendar_day_representation($event->timestart, $now, $usecommonwords);
|
|
$dayend = calendar_day_representation($event->timestart + $event->timeduration, $now, $usecommonwords);
|
|
$timestart = calendar_time_representation($event->timestart);
|
|
$timeend = calendar_time_representation($event->timestart + $event->timeduration);
|
|
|
|
// Set printable representation
|
|
$eventtime = calendar_get_link_tag($daystart, CALENDAR_URL.'view.php?view=day'.$morehref.'&', $startdate['mday'], $startdate['mon'], $startdate['year']).
|
|
' ('.$timestart.') <strong>»</strong> '.calendar_get_link_tag($dayend, CALENDAR_URL.'view.php?view=day'.$morehref.'&', $enddate['mday'], $enddate['mon'], $enddate['year']).
|
|
' ('.$timeend.')';
|
|
}
|
|
}
|
|
else {
|
|
// It's an "instantaneous" event
|
|
$day = calendar_day_representation($event->timestart, $now, $usecommonwords);
|
|
$time = calendar_time_representation($event->timestart);
|
|
|
|
// Set printable representation
|
|
$eventtime = calendar_get_link_tag($day, CALENDAR_URL.'view.php?view=day'.$morehref.'&', $startdate['mday'], $startdate['mon'], $startdate['year']).' ('.$time.')';
|
|
}
|
|
|
|
return $eventtime;
|
|
}
|
|
|
|
function calendar_human_readable_dst($preset) {
|
|
$weekdays = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday');
|
|
|
|
$options = new stdClass;
|
|
$options->activate_index = ($preset->activate_index == -1) ? get_string('last', 'calendar') : get_string('nth', 'calendar', $preset->activate_index);
|
|
$options->activate_weekday = ($preset->activate_day < 0) ? get_string('day', 'calendar') : get_string($weekdays[$preset->activate_day], 'calendar');
|
|
$options->activate_month = date('F', mktime(0, 0, 0, $preset->activate_month, 1, 2000));
|
|
$options->offset = abs($preset->apply_offset);
|
|
$options->direction = $preset->apply_offset > 0 ? get_string('timeforward', 'calendar') : get_string('timerewind', 'calendar');
|
|
$options->deactivate_index = ($preset->deactivate_index == -1) ? get_string('last', 'calendar') : get_string('nth', 'calendar', $preset->deactivate_index);
|
|
$options->deactivate_weekday = ($preset->deactivate_day < 0) ? get_string('day', 'calendar') : get_string($weekdays[$preset->deactivate_day], 'calendar');
|
|
$options->deactivate_month = date('F', mktime(0, 0, 0, $preset->deactivate_month, 1, 2000));
|
|
|
|
return get_string('dsthumanreadable', 'calendar', $options);
|
|
//print_string('dstonthe', 'calendar')
|
|
//return 'ID '.$preset->id.': DST is activated on the X of X.';
|
|
}
|
|
|
|
// "Find the ($index as int, 1st, 2nd, etc, -1 = last) ($weekday as int, sunday = 0) in ($month) of ($year)"
|
|
function calendar_find_day_in_month($index, $weekday, $month, $year) {
|
|
if($weekday == -1) {
|
|
// Any day of the week will do
|
|
if($index == -1) {
|
|
// Last day of that month
|
|
$targetday = calendar_days_in_month($month, $year);
|
|
}
|
|
else {
|
|
// Not last day; a straight index value
|
|
$targetday = $index;
|
|
}
|
|
}
|
|
else {
|
|
// We need to calculate when exactly that weekday is
|
|
// Fist of all, what day of the week is the first of that month?
|
|
|
|
// Convert to timestamp and back to readable representation using the server's timezone;
|
|
// this should be correct regardless of what the user's timezone is.
|
|
$firstmonthweekday = strftime('%w', mktime(0, 0, 0, $month, 1, $year));
|
|
//PJ print_object('The first of '.$month.'/'.$year.' is '.$firstmonthweekday);
|
|
$daysinmonth = calendar_days_in_month($month, $year);
|
|
|
|
// This is the first such-named weekday of the month
|
|
$targetday = 1 + $weekday - $firstmonthweekday;
|
|
if($targetday <= 0) {
|
|
$targetday += 7;
|
|
}
|
|
//PJ print_object('The FIRST SPECIFIC '.$weekday.' of '.$month.'/'.$year.' is on '.$targetday);
|
|
|
|
if($index == -1) {
|
|
// To find the LAST such weekday, just keep adding 7 days at a time
|
|
while($targetday + 7 <= $daysinmonth) {
|
|
$targetday += 7;
|
|
}
|
|
//PJ print_object('The LAST SPECIFIC '.$weekday.' of '.$month.'/'.$year.' is on '.$targetday);
|
|
}
|
|
else {
|
|
// For a specific week, add as many weeks as required
|
|
$targetday += $index > 1 ? ($index - 1) * 7 : 0;
|
|
}
|
|
}
|
|
|
|
return $targetday;
|
|
}
|
|
|
|
function calendar_print_month_selector($name, $selected) {
|
|
|
|
$months = array();
|
|
|
|
for ($i=1; $i<=12; $i++) {
|
|
$months[$i] = userdate(gmmktime(12, 0, 0, $i, 1, 2000), '%B');
|
|
}
|
|
|
|
choose_from_menu($months, $name, $selected, '');
|
|
}
|
|
|
|
function calendar_get_filters_status() {
|
|
global $SESSION;
|
|
|
|
$status = 0;
|
|
if($SESSION->cal_show_global) {
|
|
$status += 1;
|
|
}
|
|
if($SESSION->cal_show_course) {
|
|
$status += 2;
|
|
}
|
|
if($SESSION->cal_show_groups) {
|
|
$status += 4;
|
|
}
|
|
if($SESSION->cal_show_user) {
|
|
$status += 8;
|
|
}
|
|
return $status;
|
|
}
|
|
|
|
function calendar_set_filters_status($packed_bitfield) {
|
|
global $SESSION, $USER;
|
|
|
|
if(!isset($USER) || empty($USER->id)) {
|
|
return false;
|
|
}
|
|
|
|
$SESSION->cal_show_global = ($packed_bitfield & 1);
|
|
$SESSION->cal_show_course = ($packed_bitfield & 2);
|
|
$SESSION->cal_show_groups = ($packed_bitfield & 4);
|
|
$SESSION->cal_show_user = ($packed_bitfield & 8);
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|