forked from ncstate-delta/moodle-mod_zoom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·197 lines (166 loc) · 6.99 KB
/
index.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?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
*/
require_once(dirname(dirname(dirname(__FILE__))).'/config.php');
require_once(dirname(__FILE__).'/lib.php');
require_once(dirname(__FILE__).'/locallib.php');
require_once(dirname(__FILE__).'/../../lib/moodlelib.php');
$id = required_param('id', PARAM_INT); // Course.
$course = $DB->get_record('course', array('id' => $id), '*', MUST_EXIST);
require_course_login($course);
$context = context_course::instance($course->id);
require_capability('mod/zoom:view', $context);
$iszoommanager = has_capability('mod/zoom:addinstance', $context);
$params = array(
'context' => $context
);
$event = \mod_zoom\event\course_module_instance_list_viewed::create($params);
$event->add_record_snapshot('course', $course);
$event->trigger();
$strname = get_string('modulenameplural', 'mod_zoom');
$strnew = get_string('newmeetings', 'mod_zoom');
$strold = get_string('oldmeetings', 'mod_zoom');
$strtitle = get_string('title', 'mod_zoom');
$strwebinar = get_string('webinar', 'mod_zoom');
$strtime = get_string('meeting_time', 'mod_zoom');
$strduration = get_string('duration', 'mod_zoom');
$stractions = get_string('actions', 'mod_zoom');
$strsessions = get_string('sessions', 'mod_zoom');
$strmeetingstarted = get_string('meeting_started', 'mod_zoom');
$strjoin = get_string('join', 'mod_zoom');
$PAGE->set_url('/mod/zoom/index.php', array('id' => $id));
$PAGE->navbar->add($strname);
$PAGE->set_title("$course->shortname: $strname");
$PAGE->set_heading($course->fullname);
$PAGE->set_pagelayout('incourse');
echo $OUTPUT->header();
echo $OUTPUT->heading($strname);
if (! $zooms = get_all_instances_in_course('zoom', $course)) {
notice(get_string('nozooms', 'mod_zoom'), new moodle_url('/course/view.php', array('id' => $course->id)));
}
$usesections = course_format_uses_sections($course->format);
$zoomuserid = zoom_get_user_id(false);
$newtable = new html_table();
$newtable->attributes['class'] = 'generaltable mod_index';
$newhead = array($strtitle, $strtime, $strduration, $stractions);
$newalign = array('left', 'left', 'left', 'left');
$oldtable = new html_table();
$oldhead = array($strtitle, $strtime);
$oldalign = array('left', 'left');
// Show section column if there are sections.
if ($usesections) {
$strsectionname = get_string('sectionname', 'format_'.$course->format);
array_unshift($newhead, $strsectionname);
array_unshift($newalign, 'center');
array_unshift($oldhead, $strsectionname);
array_unshift($oldalign, 'center');
}
// Show sessions column only if user can edit Zoom meetings.
if ($iszoommanager) {
$newhead[] = $strsessions;
$newalign[] = 'left';
$oldhead[] = $strsessions;
$oldalign[] = 'left';
}
$newtable->head = $newhead;
$newtable->align = $newalign;
$oldtable->head = $oldhead;
$oldtable->align = $oldalign;
$now = time();
$modinfo = get_fast_modinfo($course);
$cms = $modinfo->instances['zoom'];
foreach ($zooms as $z) {
$row = array();
list($inprogress, $available, $finished) = zoom_get_state($z);
$cm = $cms[$z->id];
if ($usesections && isset($cm->sectionnum)) {
$row[0] = get_section_name($course, $cm->sectionnum);
}
$url = new moodle_url('view.php', array('id' => $cm->id));
$row[1] = html_writer::link($url, $cm->get_formatted_name());
if ($z->webinar) {
$row[1] .= " ($strwebinar)";
}
// Get start time column information.
if ($z->recurring && $z->recurrence_type == ZOOM_RECURRINGTYPE_NOTIME) {
$displaytime = get_string('recurringmeeting', 'mod_zoom');
$displaytime .= html_writer::empty_tag('br');
$displaytime .= get_string('recurringmeetingexplanation', 'mod_zoom');
} else if ($z->recurring && $z->recurrence_type != ZOOM_RECURRINGTYPE_NOTIME) {
$displaytime = get_string('recurringmeeting', 'mod_zoom');
$displaytime .= html_writer::empty_tag('br');
if (($nextoccurrence = zoom_get_next_occurrence($z)) > 0) {
$displaytime .= get_string('nextoccurrence', 'mod_zoom').': '.userdate($nextoccurrence);
} else {
$displaytime .= get_string('nooccurrenceleft', 'mod_zoom');
}
} else {
$displaytime = userdate($z->start_time);
}
$report = new moodle_url('report.php', array('id' => $cm->id));
$sessions = html_writer::link($report, $strsessions);
if ($finished) {
$row[2] = $displaytime;
if ($iszoommanager) {
$row[3] = $sessions;
}
$oldtable->data[] = $row;
} else {
if ($inprogress) {
$label = html_writer::tag('span', $strmeetingstarted,
array('class' => 'label label-info zoom-info'));
$row[2] = html_writer::tag('div', $label);
} else {
$row[2] = $displaytime;
}
$row[3] = ($z->recurring && $z->recurrence_type == ZOOM_RECURRINGTYPE_NOTIME) ? '--' : format_time($z->duration);
if ($available) {
$buttonhtml = html_writer::tag('button', $strjoin,
array('type' => 'submit', 'class' => 'btn btn-primary'));
$aurl = new moodle_url('/mod/zoom/loadmeeting.php', array('id' => $cm->id));
$buttonhtml .= html_writer::input_hidden_params($aurl);
$row[4] = html_writer::tag('form', $buttonhtml, array('action' => $aurl->out_omit_querystring(), 'target' => '_blank'));
} else {
$row[4] = '--';
}
if ($iszoommanager) {
$row[] = $sessions;
}
$newtable->data[] = $row;
}
}
echo $OUTPUT->heading($strnew, 4);
echo html_writer::table($newtable);
echo $OUTPUT->heading($strold, 4, null, 'mod-zoom-old-meetings-header');
// Show refresh meeting sessions link only if user can run the 'refresh session reports' console command.
if (has_capability('mod/zoom:refreshsessions', $context)) {
$linkarguments = array(
'courseid' => $id,
'start' => date('Y-m-d', strtotime('-3 days')),
'end' => date('Y-m-d'),
);
$url = new moodle_url($CFG->wwwroot. '/mod/zoom/console/get_meeting_report.php',
$linkarguments);
echo html_writer::link($url, get_string('refreshreports', 'mod_zoom'), array('target' => '_blank', 'class' => 'pl-4'));
}
echo html_writer::table($oldtable);
echo $OUTPUT->footer();