Merge branch 'MDL-48753_m27' of git://github.com/markn86/moodle into MOODLE_27_STABLE
[moodle.git] / calendar / renderer.php
blob688aab0604e601831aa6652c91514f46c9fab6ca
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This file contains the renderers for the calendar within Moodle
21 * @copyright 2010 Sam Hemelryk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @package calendar
26 if (!defined('MOODLE_INTERNAL')) {
27 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
30 /**
31 * The primary renderer for the calendar.
33 class core_calendar_renderer extends plugin_renderer_base {
35 /**
36 * Creates a basic export form
38 * @param bool $allowthisweek
39 * @param bool $allownextweek
40 * @param bool $allownextmonth
41 * @param int $userid
42 * @param string $authtoken
43 * @return string
45 public function basic_export_form($allowthisweek, $allownextweek, $allownextmonth, $userid, $authtoken) {
46 global $CFG;
48 $output = html_writer::tag('div', get_string('export', 'calendar'), array('class'=>'header'));
49 $output .= html_writer::start_tag('fieldset');
50 $output .= html_writer::tag('legend', get_string('commontasks', 'calendar'));
51 $output .= html_writer::start_tag('form', array('action'=>new moodle_url('/calendar/export_execute.php'), 'method'=>'get'));
53 $output .= html_writer::tag('div', get_string('iwanttoexport', 'calendar'));
55 $output .= html_writer::start_tag('div', array('class'=>'indent'));
56 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_what', 'id'=>'pw_all', 'value'=>'all', 'checked'=>'checked'));
57 $output .= html_writer::tag('label', get_string('eventsall', 'calendar'), array('for'=>'pw_all'));
58 $output .= html_writer::empty_tag('br');
59 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_what', 'id'=>'pw_course', 'value'=>'courses'));
60 $output .= html_writer::tag('label', get_string('eventsrelatedtocourses', 'calendar'), array('for'=>'pw_course'));
61 $output .= html_writer::empty_tag('br');
62 $output .= html_writer::end_tag('div');
64 $output .= html_writer::tag('div', get_string('for', 'calendar').':');
66 $output .= html_writer::start_tag('div', array('class'=>'indent'));
67 if ($allowthisweek) {
68 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_time', 'id'=>'pt_wknow', 'value'=>'weeknow', 'checked'=>'checked'));
69 $output .= html_writer::tag('label', get_string('weekthis', 'calendar'), array('for'=>'pt_wknow'));
70 $output .= html_writer::empty_tag('br');
72 if ($allownextweek) {
73 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_time', 'id'=>'pt_wknext', 'value'=>'weeknext'));
74 $output .= html_writer::tag('label', get_string('weeknext', 'calendar'), array('for'=>'pt_wknext'));
75 $output .= html_writer::empty_tag('br');
77 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_time', 'id'=>'pt_monnow', 'value'=>'monthnow'));
78 $output .= html_writer::tag('label', get_string('monththis', 'calendar'), array('for'=>'pt_monnow'));
79 $output .= html_writer::empty_tag('br');
80 if ($allownextmonth) {
81 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_time', 'id'=>'pt_monnext', 'value'=>'monthnext'));
82 $output .= html_writer::tag('label', get_string('monthnext', 'calendar'), array('for'=>'pt_monnext'));
83 $output .= html_writer::empty_tag('br');
85 $output .= html_writer::empty_tag('input', array('type'=>'radio', 'name'=>'preset_time', 'id'=>'pt_recupc', 'value'=>'recentupcoming'));
86 $output .= html_writer::tag('label', get_string('recentupcoming', 'calendar'), array('for'=>'pt_recupc'));
87 $output .= html_writer::empty_tag('br');
89 if ($CFG->calendar_customexport) {
90 $a = new stdClass();
91 $now = time();
92 $time = $now - $CFG->calendar_exportlookback * DAYSECS;
93 $a->timestart = userdate($time, get_string('strftimedatefullshort', 'langconfig'));
94 $time = $now + $CFG->calendar_exportlookahead * DAYSECS;
95 $a->timeend = userdate($time, get_string('strftimedatefullshort', 'langconfig'));
96 $output .= html_writer::empty_tag('input', array('type' => 'radio', 'name' => 'preset_time', 'id' => 'pt_custom', 'value' => 'custom'));
97 $output .= html_writer::tag('label', get_string('customexport', 'calendar', $a), array('for' => 'pt_custom'));
98 $output .= html_writer::empty_tag('br');
101 $output .= html_writer::end_tag('div');
102 $output .= html_writer::start_tag('div', array('class'=>'rightalign'));
103 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'cal_d', 'value'=>''));
104 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'cal_m', 'value'=>''));
105 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'cal_y', 'value'=>''));
106 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'userid', 'value'=>$userid));
107 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'authtoken', 'value'=>$authtoken));
109 $output .= html_writer::empty_tag('input', array('type'=>'submit', 'name' => 'generateurl', 'id'=>'generateurl', 'value'=>get_string('generateurlbutton', 'calendar')));
110 $output .= html_writer::empty_tag('input', array('type'=>'submit', 'value'=>get_string('exportbutton', 'calendar')));
112 $output .= html_writer::end_tag('div');
114 $output .= html_writer::end_tag('form');
115 $output .= html_writer::end_tag('fieldset');
117 $output .= html_writer::start_tag('div', array('id'=>'urlbox', 'style'=>'display:none;'));
118 $output .= html_writer::tag('p', get_string('urlforical', 'calendar'));
119 $output .= html_writer::tag('div', '', array('id'=>'url', 'style'=>'overflow:scroll;width:650px;'));
120 $output .= html_writer::end_tag('div');
122 return $output;
126 * Starts the standard layout for the page
128 * @return string
130 public function start_layout() {
131 return html_writer::start_tag('div', array('class'=>'maincalendar'));
135 * Creates the remainder of the layout
137 * @return string
139 public function complete_layout() {
140 return html_writer::end_tag('div');
144 * Produces the content for the filters block (pretend block)
146 * @param int $courseid
147 * @param int $day
148 * @param int $month
149 * @param int $year
150 * @param int $view
151 * @param int $courses
152 * @return string
154 public function fake_block_filters($courseid, $day, $month, $year, $view, $courses) {
155 $returnurl = $this->page->url;
156 $returnurl->param('course', $courseid);
157 return html_writer::tag('div', calendar_filter_controls($returnurl), array('class'=>'calendar_filters filters'));
161 * Produces the content for the three months block (pretend block)
163 * This includes the previous month, the current month, and the next month
165 * @param calendar_information $calendar
166 * @return string
168 public function fake_block_threemonths(calendar_information $calendar) {
169 // Get the calendar type we are using.
170 $calendartype = \core_calendar\type_factory::get_calendar_instance();
172 $date = $calendartype->timestamp_to_date_array($calendar->time);
174 $prevmonth = calendar_sub_month($date['mon'], $date['year']);
175 $prevmonthtime = $calendartype->convert_to_gregorian($prevmonth[1], $prevmonth[0], 1);
176 $prevmonthtime = make_timestamp($prevmonthtime['year'], $prevmonthtime['month'], $prevmonthtime['day'],
177 $prevmonthtime['hour'], $prevmonthtime['minute']);
179 $nextmonth = calendar_add_month($date['mon'], $date['year']);
180 $nextmonthtime = $calendartype->convert_to_gregorian($nextmonth[1], $nextmonth[0], 1);
181 $nextmonthtime = make_timestamp($nextmonthtime['year'], $nextmonthtime['month'], $nextmonthtime['day'],
182 $nextmonthtime['hour'], $nextmonthtime['minute']);
184 $content = html_writer::start_tag('div', array('class' => 'minicalendarblock'));
185 $content .= calendar_get_mini($calendar->courses, $calendar->groups, $calendar->users, false, false, 'display', $calendar->courseid, $prevmonthtime);
186 $content .= html_writer::end_tag('div');
187 $content .= html_writer::start_tag('div', array('class' => 'minicalendarblock'));
188 $content .= calendar_get_mini($calendar->courses, $calendar->groups, $calendar->users, false, false, 'display', $calendar->courseid, $calendar->time);
189 $content .= html_writer::end_tag('div');
190 $content .= html_writer::start_tag('div', array('class' => 'minicalendarblock'));
191 $content .= calendar_get_mini($calendar->courses, $calendar->groups, $calendar->users, false, false, 'display', $calendar->courseid, $nextmonthtime);
192 $content .= html_writer::end_tag('div');
193 return $content;
197 * Adds a pretent calendar block
199 * @param block_contents $bc
200 * @param mixed $pos BLOCK_POS_RIGHT | BLOCK_POS_LEFT
202 public function add_pretend_calendar_block(block_contents $bc, $pos=BLOCK_POS_RIGHT) {
203 $this->page->blocks->add_fake_block($bc, $pos);
207 * Creates a button to add a new event
209 * @param int $courseid
210 * @param int $day
211 * @param int $month
212 * @param int $year
213 * @param int $time the unixtime, used for multiple calendar support. The values $day,
214 * $month and $year are kept for backwards compatibility.
215 * @return string
217 protected function add_event_button($courseid, $day = null, $month = null, $year = null, $time = null) {
218 // If a day, month and year were passed then convert it to a timestamp. If these were passed
219 // then we can assume the day, month and year are passed as Gregorian, as no where in core
220 // should we be passing these values rather than the time. This is done for BC.
221 if (!empty($day) && !empty($month) && !empty($year)) {
222 if (checkdate($month, $day, $year)) {
223 $time = make_timestamp($year, $month, $day);
224 } else {
225 $time = time();
227 } else if (empty($time)) {
228 $time = time();
231 $output = html_writer::start_tag('div', array('class'=>'buttons'));
232 $output .= html_writer::start_tag('form', array('action' => CALENDAR_URL . 'event.php', 'method' => 'get'));
233 $output .= html_writer::start_tag('div');
234 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name' => 'action', 'value' => 'new'));
235 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name' => 'course', 'value' => $courseid));
236 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name' => 'time', 'value' => $time));
237 $output .= html_writer::empty_tag('input', array('type'=>'submit', 'value' => get_string('newevent', 'calendar')));
238 $output .= html_writer::end_tag('div');
239 $output .= html_writer::end_tag('form');
240 $output .= html_writer::end_tag('div');
241 return $output;
245 * Displays the calendar for a single day
247 * @param calendar_information $calendar
248 * @return string
250 public function show_day(calendar_information $calendar, moodle_url $returnurl = null) {
252 if ($returnurl === null) {
253 $returnurl = $this->page->url;
256 $events = calendar_get_upcoming($calendar->courses, $calendar->groups, $calendar->users, 1, 100, $calendar->timestamp_today());
258 $output = html_writer::start_tag('div', array('class'=>'header'));
259 if (calendar_user_can_add_event($calendar->course)) {
260 $output .= $this->add_event_button($calendar->course->id, 0, 0, 0, $calendar->time);
262 $output .= $this->course_filter_selector($returnurl, get_string('dayviewfor', 'calendar'));
263 $output .= html_writer::end_tag('div');
264 // Controls
265 $output .= html_writer::tag('div', calendar_top_controls('day', array('id' => $calendar->courseid, 'time' => $calendar->time)), array('class'=>'controls'));
267 if (empty($events)) {
268 // There is nothing to display today.
269 $output .= $this->output->heading(get_string('daywithnoevents', 'calendar'), 3);
270 } else {
271 $output .= html_writer::start_tag('div', array('class'=>'eventlist'));
272 $underway = array();
273 // First, print details about events that start today
274 foreach ($events as $event) {
275 $event = new calendar_event($event);
276 $event->calendarcourseid = $calendar->courseid;
277 if ($event->timestart >= $calendar->timestamp_today() && $event->timestart <= $calendar->timestamp_tomorrow()-1) { // Print it now
278 $event->time = calendar_format_event_time($event, time(), null, false, $calendar->timestamp_today());
279 $output .= $this->event($event);
280 } else { // Save this for later
281 $underway[] = $event;
285 // Then, show a list of all events that just span this day
286 if (!empty($underway)) {
287 $output .= $this->output->heading(get_string('spanningevents', 'calendar'), 3);
288 foreach ($underway as $event) {
289 $event->time = calendar_format_event_time($event, time(), null, false, $calendar->timestamp_today());
290 $output .= $this->event($event);
294 $output .= html_writer::end_tag('div');
297 return $output;
301 * Displays an event
303 * @param calendar_event $event
304 * @param bool $showactions
305 * @return string
307 public function event(calendar_event $event, $showactions=true) {
308 global $CFG;
310 $event = calendar_add_event_metadata($event);
311 $context = $event->context;
313 $anchor = html_writer::tag('a', '', array('name'=>'event_'.$event->id));
315 $table = new html_table();
316 $table->attributes = array('class'=>'event', 'cellspacing'=>'0');
317 $table->data = array(
318 0 => new html_table_row(),
319 1 => new html_table_row(),
322 if (!empty($event->icon)) {
323 $table->data[0]->cells[0] = new html_table_cell($anchor.$event->icon);
324 } else {
325 $table->data[0]->cells[0] = new html_table_cell($anchor.$this->output->spacer(array('height'=>16, 'width'=>16, 'br'=>true)));
327 $table->data[0]->cells[0]->attributes['class'] .= ' picture';
329 $table->data[0]->cells[1] = new html_table_cell();
330 $table->data[0]->cells[1]->attributes['class'] .= ' topic';
331 if (!empty($event->referer)) {
332 $table->data[0]->cells[1]->text .= html_writer::tag('div', $event->referer, array('class'=>'referer'));
333 } else {
334 $table->data[0]->cells[1]->text .= html_writer::tag('div', format_string($event->name, false, array('context' => $context)), array('class'=>'name'));
336 if (!empty($event->courselink)) {
337 $table->data[0]->cells[1]->text .= html_writer::tag('div', $event->courselink, array('class'=>'course'));
339 // Show subscription source if needed.
340 if (!empty($event->subscription) && $CFG->calendar_showicalsource) {
341 if (!empty($event->subscription->url)) {
342 $source = html_writer::link($event->subscription->url, get_string('subsource', 'calendar', $event->subscription));
343 } else {
344 // File based ical.
345 $source = get_string('subsource', 'calendar', $event->subscription);
347 $table->data[0]->cells[1]->text .= html_writer::tag('div', $source, array('class' => 'subscription'));
349 if (!empty($event->time)) {
350 $table->data[0]->cells[1]->text .= html_writer::tag('span', $event->time, array('class'=>'date'));
351 } else {
352 $table->data[0]->cells[1]->text .= html_writer::tag('span', calendar_time_representation($event->timestart), array('class'=>'date'));
355 $table->data[1]->cells[0] = new html_table_cell('&nbsp;');
356 $table->data[1]->cells[0]->attributes['class'] .= 'side';
358 $table->data[1]->cells[1] = new html_table_cell(format_text($event->description, $event->format, array('context' => $context)));
359 $table->data[1]->cells[1]->attributes['class'] .= ' description';
360 if (isset($event->cssclass)) {
361 $table->data[1]->cells[1]->attributes['class'] .= ' '.$event->cssclass;
364 if (calendar_edit_event_allowed($event) && $showactions) {
365 if (empty($event->cmid)) {
366 $editlink = new moodle_url(CALENDAR_URL.'event.php', array('action'=>'edit', 'id'=>$event->id));
367 $deletelink = new moodle_url(CALENDAR_URL.'delete.php', array('id'=>$event->id));
368 if (!empty($event->calendarcourseid)) {
369 $editlink->param('course', $event->calendarcourseid);
370 $deletelink->param('course', $event->calendarcourseid);
372 } else {
373 $editlink = new moodle_url('/course/mod.php', array('update'=>$event->cmid, 'return'=>true, 'sesskey'=>sesskey()));
374 $deletelink = null;
377 $commands = html_writer::start_tag('div', array('class'=>'commands'));
378 $commands .= html_writer::start_tag('a', array('href'=>$editlink));
379 $commands .= html_writer::empty_tag('img', array('src'=>$this->output->pix_url('t/edit'), 'alt'=>get_string('tt_editevent', 'calendar'), 'title'=>get_string('tt_editevent', 'calendar')));
380 $commands .= html_writer::end_tag('a');
381 if ($deletelink != null) {
382 $commands .= html_writer::start_tag('a', array('href'=>$deletelink));
383 $commands .= html_writer::empty_tag('img', array('src'=>$this->output->pix_url('t/delete'), 'alt'=>get_string('tt_deleteevent', 'calendar'), 'title'=>get_string('tt_deleteevent', 'calendar')));
384 $commands .= html_writer::end_tag('a');
386 $commands .= html_writer::end_tag('div');
387 $table->data[1]->cells[1]->text .= $commands;
389 return html_writer::table($table);
393 * Displays a month in detail
395 * @param calendar_information $calendar
396 * @param moodle_url $returnurl the url to return to
397 * @return string
399 public function show_month_detailed(calendar_information $calendar, moodle_url $returnurl = null) {
400 global $CFG;
402 if (empty($returnurl)) {
403 $returnurl = $this->page->url;
406 // Get the calendar type we are using.
407 $calendartype = \core_calendar\type_factory::get_calendar_instance();
409 // Store the display settings.
410 $display = new stdClass;
411 $display->thismonth = false;
413 // Get the specified date in the calendar type being used.
414 $date = $calendartype->timestamp_to_date_array($calendar->time);
415 $thisdate = $calendartype->timestamp_to_date_array(time());
416 if ($date['mon'] == $thisdate['mon'] && $date['year'] == $thisdate['year']) {
417 $display->thismonth = true;
418 $date = $thisdate;
419 $calendar->time = time();
422 // Get Gregorian date for the start of the month.
423 $gregoriandate = $calendartype->convert_to_gregorian($date['year'], $date['mon'], 1);
424 // Store the gregorian date values to be used later.
425 list($gy, $gm, $gd, $gh, $gmin) = array($gregoriandate['year'], $gregoriandate['month'], $gregoriandate['day'],
426 $gregoriandate['hour'], $gregoriandate['minute']);
428 // Get the starting week day for this month.
429 $startwday = dayofweek(1, $date['mon'], $date['year']);
430 // Get the days in a week.
431 $daynames = calendar_get_days();
432 // Store the number of days in a week.
433 $numberofdaysinweek = $calendartype->get_num_weekdays();
435 $display->minwday = calendar_get_starting_weekday();
436 $display->maxwday = $display->minwday + ($numberofdaysinweek - 1);
437 $display->maxdays = calendar_days_in_month($date['mon'], $date['year']);
439 // These are used for DB queries, so we want unixtime, so we need to use Gregorian dates.
440 $display->tstart = make_timestamp($gy, $gm, $gd, $gh, $gmin, 0);
441 $display->tend = $display->tstart + ($display->maxdays * DAYSECS) - 1;
443 // Align the starting weekday to fall in our display range
444 // This is simple, not foolproof.
445 if ($startwday < $display->minwday) {
446 $startwday += $numberofdaysinweek;
449 // Get events from database
450 $events = calendar_get_events($display->tstart, $display->tend, $calendar->users, $calendar->groups, $calendar->courses);
451 if (!empty($events)) {
452 foreach($events as $eventid => $event) {
453 $event = new calendar_event($event);
454 if (!empty($event->modulename)) {
455 $cm = get_coursemodule_from_instance($event->modulename, $event->instance);
456 if (!\core_availability\info_module::is_user_visible($cm, 0, false)) {
457 unset($events[$eventid]);
463 // Extract information: events vs. time
464 calendar_events_by_day($events, $date['mon'], $date['year'], $eventsbyday, $durationbyday, $typesbyday, $calendar->courses);
466 $output = html_writer::start_tag('div', array('class'=>'header'));
467 if (calendar_user_can_add_event($calendar->course)) {
468 $output .= $this->add_event_button($calendar->course->id, 0, 0, 0, $calendar->time);
470 $output .= $this->course_filter_selector($returnurl, get_string('detailedmonthviewfor', 'calendar'));
471 $output .= html_writer::end_tag('div', array('class'=>'header'));
472 // Controls
473 $output .= html_writer::tag('div', calendar_top_controls('month', array('id' => $calendar->courseid, 'time' => $calendar->time)), array('class' => 'controls'));
475 $table = new html_table();
476 $table->attributes = array('class'=>'calendarmonth calendartable');
477 $table->summary = get_string('calendarheading', 'calendar', userdate($calendar->time, get_string('strftimemonthyear')));
478 $table->data = array();
480 // Get the day names as the header.
481 $header = array();
482 for($i = $display->minwday; $i <= $display->maxwday; ++$i) {
483 $header[] = $daynames[$i % $numberofdaysinweek]['shortname'];
485 $table->head = $header;
487 // For the table display. $week is the row; $dayweek is the column.
488 $week = 1;
489 $dayweek = $startwday;
491 $row = new html_table_row(array());
493 // Paddding (the first week may have blank days in the beginning)
494 for($i = $display->minwday; $i < $startwday; ++$i) {
495 $cell = new html_table_cell('&nbsp;');
496 $cell->attributes = array('class'=>'nottoday dayblank');
497 $row->cells[] = $cell;
500 // Now display all the calendar
501 $weekend = CALENDAR_DEFAULT_WEEKEND;
502 if (isset($CFG->calendar_weekend)) {
503 $weekend = intval($CFG->calendar_weekend);
506 $daytime = strtotime('-1 day', $display->tstart);
507 for ($day = 1; $day <= $display->maxdays; ++$day, ++$dayweek) {
508 $daytime = strtotime('+1 day', $daytime);
509 if($dayweek > $display->maxwday) {
510 // We need to change week (table row)
511 $table->data[] = $row;
512 $row = new html_table_row(array());
513 $dayweek = $display->minwday;
514 ++$week;
517 // Reset vars
518 $cell = new html_table_cell();
519 $dayhref = calendar_get_link_href(new moodle_url(CALENDAR_URL.'view.php', array('view' => 'day', 'course' => $calendar->courseid)), 0, 0, 0, $daytime);
521 $cellclasses = array();
523 if ($weekend & (1 << ($dayweek % $numberofdaysinweek))) {
524 // Weekend. This is true no matter what the exact range is.
525 $cellclasses[] = 'weekend';
528 // Special visual fx if an event is defined
529 if (isset($eventsbyday[$day])) {
530 if(count($eventsbyday[$day]) == 1) {
531 $title = get_string('oneevent', 'calendar');
532 } else {
533 $title = get_string('manyevents', 'calendar', count($eventsbyday[$day]));
535 $cell->text = html_writer::tag('div', html_writer::link($dayhref, $day, array('title'=>$title)), array('class'=>'day'));
536 } else {
537 $cell->text = html_writer::tag('div', $day, array('class'=>'day'));
540 // Special visual fx if an event spans many days
541 $durationclass = false;
542 if (isset($typesbyday[$day]['durationglobal'])) {
543 $durationclass = 'duration_global';
544 } else if (isset($typesbyday[$day]['durationcourse'])) {
545 $durationclass = 'duration_course';
546 } else if (isset($typesbyday[$day]['durationgroup'])) {
547 $durationclass = 'duration_group';
548 } else if (isset($typesbyday[$day]['durationuser'])) {
549 $durationclass = 'duration_user';
551 if ($durationclass) {
552 $cellclasses[] = 'duration';
553 $cellclasses[] = $durationclass;
556 // Special visual fx for today
557 if ($display->thismonth && $day == $date['mday']) {
558 $cellclasses[] = 'day today';
559 } else {
560 $cellclasses[] = 'day nottoday';
562 $cell->attributes = array('class'=>join(' ',$cellclasses));
564 if (isset($eventsbyday[$day])) {
565 $cell->text .= html_writer::start_tag('ul', array('class'=>'events-new'));
566 foreach($eventsbyday[$day] as $eventindex) {
567 // If event has a class set then add it to the event <li> tag
568 $attributes = array();
569 if (!empty($events[$eventindex]->class)) {
570 $attributes['class'] = $events[$eventindex]->class;
572 $dayhref->set_anchor('event_'.$events[$eventindex]->id);
573 $link = html_writer::link($dayhref, format_string($events[$eventindex]->name, true));
574 $cell->text .= html_writer::tag('li', $link, $attributes);
576 $cell->text .= html_writer::end_tag('ul');
578 if (isset($durationbyday[$day])) {
579 $cell->text .= html_writer::start_tag('ul', array('class'=>'events-underway'));
580 foreach($durationbyday[$day] as $eventindex) {
581 $cell->text .= html_writer::tag('li', '['.format_string($events[$eventindex]->name,true).']', array('class'=>'events-underway'));
583 $cell->text .= html_writer::end_tag('ul');
585 $row->cells[] = $cell;
588 // Paddding (the last week may have blank days at the end)
589 for($i = $dayweek; $i <= $display->maxwday; ++$i) {
590 $cell = new html_table_cell('&nbsp;');
591 $cell->attributes = array('class'=>'nottoday dayblank');
592 $row->cells[] = $cell;
594 $table->data[] = $row;
595 $output .= html_writer::table($table);
597 return $output;
601 * Displays upcoming events
603 * @param calendar_information $calendar
604 * @param int $futuredays
605 * @param int $maxevents
606 * @return string
608 public function show_upcoming_events(calendar_information $calendar, $futuredays, $maxevents, moodle_url $returnurl = null) {
610 if ($returnurl === null) {
611 $returnurl = $this->page->url;
614 $events = calendar_get_upcoming($calendar->courses, $calendar->groups, $calendar->users, $futuredays, $maxevents);
616 $output = html_writer::start_tag('div', array('class'=>'header'));
617 if (calendar_user_can_add_event($calendar->course)) {
618 $output .= $this->add_event_button($calendar->course->id);
620 $output .= $this->course_filter_selector($returnurl, get_string('upcomingeventsfor', 'calendar'));
621 $output .= html_writer::end_tag('div');
623 if ($events) {
624 $output .= html_writer::start_tag('div', array('class'=>'eventlist'));
625 foreach ($events as $event) {
626 // Convert to calendar_event object so that we transform description
627 // accordingly
628 $event = new calendar_event($event);
629 $event->calendarcourseid = $calendar->courseid;
630 $output .= $this->event($event);
632 $output .= html_writer::end_tag('div');
633 } else {
634 $output .= $this->output->heading(get_string('noupcomingevents', 'calendar'));
637 return $output;
641 * Displays a course filter selector
643 * @param moodle_url $returnurl The URL that the user should be taken too upon selecting a course.
644 * @param string $label The label to use for the course select.
645 * @return string
647 protected function course_filter_selector(moodle_url $returnurl, $label=null) {
648 global $USER, $SESSION, $CFG;
650 if (!isloggedin() or isguestuser()) {
651 return '';
654 if (has_capability('moodle/calendar:manageentries', context_system::instance()) && !empty($CFG->calendar_adminseesall)) {
655 $courses = get_courses('all', 'c.shortname','c.id,c.shortname');
656 } else {
657 $courses = enrol_get_my_courses();
660 unset($courses[SITEID]);
662 $courseoptions = array();
663 $courseoptions[SITEID] = get_string('fulllistofcourses');
664 foreach ($courses as $course) {
665 $coursecontext = context_course::instance($course->id);
666 $courseoptions[$course->id] = format_string($course->shortname, true, array('context' => $coursecontext));
669 if ($this->page->course->id !== SITEID) {
670 $selected = $this->page->course->id;
671 } else {
672 $selected = '';
674 $courseurl = new moodle_url($returnurl);
675 $courseurl->remove_params('course');
676 $select = new single_select($courseurl, 'course', $courseoptions, $selected, null);
677 $select->class = 'cal_courses_flt';
678 if ($label !== null) {
679 $select->set_label($label);
680 } else {
681 $select->set_label(get_string('listofcourses'), array('class' => 'accesshide'));
683 return $this->output->render($select);
687 * Renders a table containing information about calendar subscriptions.
689 * @param int $courseid
690 * @param array $subscriptions
691 * @param string $importresults
692 * @return string
694 public function subscription_details($courseid, $subscriptions, $importresults = '') {
695 $table = new html_table();
696 $table->head = array(
697 get_string('colcalendar', 'calendar'),
698 get_string('collastupdated', 'calendar'),
699 get_string('eventkind', 'calendar'),
700 get_string('colpoll', 'calendar'),
701 get_string('colactions', 'calendar')
703 $table->align = array('left', 'left', 'left', 'center');
704 $table->width = '100%';
705 $table->data = array();
707 if (empty($subscriptions)) {
708 $cell = new html_table_cell(get_string('nocalendarsubscriptions', 'calendar'));
709 $cell->colspan = 4;
710 $table->data[] = new html_table_row(array($cell));
712 $strnever = new lang_string('never', 'calendar');
713 foreach ($subscriptions as $sub) {
714 $label = $sub->name;
715 if (!empty($sub->url)) {
716 $label = html_writer::link($sub->url, $label);
718 if (empty($sub->lastupdated)) {
719 $lastupdated = $strnever->out();
720 } else {
721 $lastupdated = userdate($sub->lastupdated, get_string('strftimedatetimeshort', 'langconfig'));
724 $cell = new html_table_cell($this->subscription_action_form($sub, $courseid));
725 $cell->colspan = 2;
726 $type = $sub->eventtype . 'events';
728 $table->data[] = new html_table_row(array(
729 new html_table_cell($label),
730 new html_table_cell($lastupdated),
731 new html_table_cell(get_string($type, 'calendar')),
732 $cell
736 $out = $this->output->box_start('generalbox calendarsubs');
738 $out .= $importresults;
739 $out .= html_writer::table($table);
740 $out .= $this->output->box_end();
741 return $out;
745 * Creates a form to perform actions on a given subscription.
747 * @param stdClass $subscription
748 * @param int $courseid
749 * @return string
751 protected function subscription_action_form($subscription, $courseid) {
752 // Assemble form for the subscription row.
753 $html = html_writer::start_tag('form', array('action' => new moodle_url('/calendar/managesubscriptions.php'), 'method' => 'post'));
754 if (empty($subscription->url)) {
755 // Don't update an iCal file, which has no URL.
756 $html .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'pollinterval', 'value' => '0'));
757 } else {
758 // Assemble pollinterval control.
759 $html .= html_writer::start_tag('div', array('style' => 'float:left;'));
760 $html .= html_writer::start_tag('select', array('name' => 'pollinterval'));
761 foreach (calendar_get_pollinterval_choices() as $k => $v) {
762 $attributes = array();
763 if ($k == $subscription->pollinterval) {
764 $attributes['selected'] = 'selected';
766 $attributes['value'] = $k;
767 $html .= html_writer::tag('option', $v, $attributes);
769 $html .= html_writer::end_tag('select');
770 $html .= html_writer::end_tag('div');
772 $html .= html_writer::start_tag('div', array('style' => 'float:right;'));
773 $html .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'sesskey', 'value' => sesskey()));
774 $html .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'course', 'value' => $courseid));
775 $html .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'id', 'value' => $subscription->id));
776 if (!empty($subscription->url)) {
777 $html .= html_writer::tag('button', get_string('update'), array('type' => 'submit', 'name' => 'action',
778 'value' => CALENDAR_SUBSCRIPTION_UPDATE));
780 $html .= html_writer::tag('button', get_string('remove'), array('type' => 'submit', 'name' => 'action',
781 'value' => CALENDAR_SUBSCRIPTION_REMOVE));
782 $html .= html_writer::end_tag('div');
783 $html .= html_writer::end_tag('form');
784 return $html;