forked from ncstate-delta/moodle-mod_zoom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.php
executable file
·96 lines (83 loc) · 3.41 KB
/
report.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
// This file is part of the Zoom plugin for Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* List all zoom meetings.
*
* @package mod_zoom
* @copyright 2015 UC Regents
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// Login check require_login() is called in zoom_get_instance_setup();.
// @codingStandardsIgnoreLine
require_once(dirname(dirname(dirname(__FILE__))).'/config.php');
require_once(dirname(__FILE__).'/lib.php');
require_once(dirname(__FILE__).'/locallib.php');
require_once(dirname(__FILE__).'/mod_form.php');
require_once(dirname(__FILE__).'/../../lib/moodlelib.php');
list($course, $cm, $zoom) = zoom_get_instance_setup();
// Check capability.
$context = context_module::instance($cm->id);
require_capability('mod/zoom:addinstance', $context);
$PAGE->set_url('/mod/zoom/report.php', array('id' => $cm->id));
$strname = $zoom->name;
$strtitle = get_string('sessions', 'mod_zoom');
$PAGE->navbar->add($strtitle);
$PAGE->set_title("$course->shortname: $strname");
$PAGE->set_heading($course->fullname);
$PAGE->set_pagelayout('incourse');
echo $OUTPUT->header();
echo $OUTPUT->heading($strname);
echo $OUTPUT->heading($strtitle, 4);
$sessions = zoom_get_sessions_for_display($zoom->id);
if (!empty($sessions)) {
$maskparticipantdata = get_config('zoom', 'maskparticipantdata');
$table = new html_table();
$table->head = array(get_string('title', 'mod_zoom'),
get_string('starttime', 'mod_zoom'),
get_string('endtime', 'mod_zoom'),
get_string('duration', 'mod_zoom'),
get_string('participants', 'mod_zoom'));
$table->align = array('left', 'left', 'left', 'left', 'left');
$format = get_string('strftimedatetimeshort', 'langconfig');
foreach ($sessions as $uuid => $meet) {
$row = array();
$row[] = $meet['topic'];
$row[] = $meet['starttime'];
$row[] = $meet['endtime'];
$row[] = $meet['duration'];
if ($meet['count'] > 0) {
if ($maskparticipantdata) {
$row[] = $meet['count']
. ' ['
. get_string('participantdatanotavailable', 'mod_zoom')
. '] '
. $OUTPUT->help_icon('participantdatanotavailable', 'mod_zoom');
} else {
$url = new moodle_url('/mod/zoom/participants.php', array('id' => $cm->id, 'uuid' => $uuid));
$row[] = html_writer::link($url, $meet['count']);
}
} else {
$row[] = 0;
}
$table->data[] = $row;
}
}
if (!empty($table->data)) {
echo html_writer::table($table);
} else {
echo $OUTPUT->notification(get_string('nomeetinginstances', 'mod_zoom'), 'notifymessage');
}
echo $OUTPUT->footer();