-
Notifications
You must be signed in to change notification settings - Fork 29
/
participation_table.php
331 lines (292 loc) · 10.7 KB
/
participation_table.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php
// This file is part of 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/>.
/**
* Subclass of flexible_table for participation and download
*
* @package mod
* @subpackage oublog
* @copyright 2011 The Open University
* @author Stacey Walker <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
**/
require_once($CFG->libdir.'/tablelib.php');
/**
* Class oublog_participation_table
* extends flexible_table to override header and download rules
*/
class oublog_participation_table extends flexible_table {
public $cm;
public $course;
public $oublog;
public $groupid;
public $groupname;
public $extraheaders;
private $hasgrades;
public function __construct($cm, $course, $oublog, $groupid,
$groupname, $hasgrades) {
$this->cm = $cm;
$this->course = $course;
$this->oublog = $oublog;
$this->groupid = $groupid;
$this->groupname = $groupname;
$this->hasgrades = $hasgrades;
parent::__construct('mod-oublog-participation');
}
/**
* Setup the columns and headers and other properties of the table and then
* call flexible_table::setup() method.
*
* @param string $download download type (csv only, default '')
* @param int $start Participation from
* @param int $end participation to
*/
public function setup($download = '', $start = 0, $end = 0) {
global $CFG;
// extra headers for export only
if (!empty($download)) {
$this->extraheaders = array(
format_string($this->course->shortname, true),
format_string($this->oublog->name, true),
);
if (!empty($this->groupname)) {
$this->extraheaders[] = $this->groupname;
}
}
// Define table columns
$columns = array(
'picture',
'fullname',
'posts',
'comments'
);
$headers = array(
'',
get_string('user'),
get_string('posts', 'oublog'),
get_string('comments', 'oublog'),
);
// Add user identity fields.
$context = context_module::instance($this->cm->id);
$extrafields = \core_user\fields::get_identity_fields($context);
foreach ($extrafields as $field) {
$columns[] = $field;
$headers[] = \core_user\fields::get_display_name($field);
}
// unset picture column + headers if download
if (!empty($download)) {
unset($columns[0]);
unset($headers[0]);
}
if ($this->hasgrades) {
$columns[] = 'grade';
$headers[] = get_string('grades');
}
$this->define_columns($columns);
$this->define_headers($headers);
$baseurl = new moodle_url("/mod/oublog/participation.php", [
'id' => $this->cm->id,
'group' => $this->groupid,
'start' => $start,
'end' => $end,
]);
$this->define_baseurl($baseurl);
$this->column_class('fullname', 'fullname');
$this->column_class('posts', 'posts');
$this->column_class('comments', 'comments');
// Add user identity fields.
foreach ($extrafields as $field) {
$this->column_class($field, $field);
}
$this->set_attribute('cellspacing', '0');
$this->set_attribute('id', 'participation');
$this->set_attribute('class', 'generaltable');
$this->set_attribute('width', '100%');
$this->set_attribute('align', 'center');
$this->sortable(false);
parent::setup();
}
/**
* This function is not part of the public api.
*
* Overriding here to avoid downloading in unsupported formats
*/
public function get_download_menu() {
$exportclasses = array('csv' => get_string('downloadcsv', 'oublog'));
return $exportclasses;
}
/**
* This function is not part of the public api.
* You don't normally need to call this. It is called automatically when
* needed when you start adding data to the table.
*/
public function start_output() {
$this->started_output = true;
if ($this->exportclass !== null) {
$this->exportclass->start_table($this->sheettitle);
if (!empty($this->download) && in_array($this->download, ['ods', 'excel'])) {
// Using add_data to avoid a duplicate sheet.
$this->exportclass->add_data($this->extraheaders);
} else {
$this->exportclass->output_headers($this->extraheaders);
}
$this->exportclass->output_headers($this->headers);
} else {
$this->start_html();
$this->print_headers();
}
}
/**
* Override to output grade form header
* @see flexible_table::wrap_html_start()
*/
public function wrap_html_start() {
if ($this->hasgrades && !$this->is_downloading()) {
echo $this->grade_form_header();
}
}
public function grade_form_header() {
global $USER;
$output = '';
$formattrs = array();
$formattrs['action'] = new moodle_url('/mod/oublog/savegrades.php');
$formattrs['id'] = 'savegrades';
$formattrs['method'] = 'post';
$output = html_writer::start_tag('form', $formattrs);
$output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'id',
'value' => $this->cm->id));
$output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'group',
'value' => $this->groupid));
$output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'sesskey',
'value' => $USER->sesskey));
return $output;
}
public function grade_form_footer() {
$output = '';
$savegrades = html_writer::empty_tag('input', array('type' => 'submit',
'name' => 'savegrades', 'value' => get_string('savegrades', 'oublog')));
$output = html_writer::tag('div', $savegrades, array('class' => 'savegradesbutton'));
$output .= html_writer::end_tag('form');
return $output;
}
}
/**
* Class oublog_user_participation_table
* extends flexible_table to override header and download rules
*
* The table for the context of oublog is only used for facilitating
* the CSV download all other view is done using standard oublog divs
* and classes
*/
class oublog_user_participation_table extends flexible_table {
public $cmid;
public $course;
public $oublog;
public $userid;
public $userfullname;
public $groupname;
public $groupid;
// Customised column and header info
public $detailsheader;
public $postsheader;
public $commentsheader;
public $posts;
public $comments;
public function __construct($cmid, $course, $oublog, $userid, $userfullname,
$groupname, $groupid) {
$this->cmid = $cmid;
$this->course = $course;
$this->oublog = $oublog;
$this->userid = $userid;
$this->userfullname = $userfullname;
$this->groupname = $groupname;
$this->groupid = $groupid;
parent::__construct('mod-oublog-user-participation');
}
public function setup($download = '') {
global $CFG, $PAGE;
// Extra headers
$this->postsheader = array(
get_string('date'),
get_string('time'),
get_string('title', 'oublog'),
get_string('content'),
get_string('attachments', 'oublog'),
);
$this->commentsheader = array(
get_string('date'),
get_string('time'),
get_string('title', 'oublog'),
get_string('content'),
get_string('postauthor', 'oublog'),
get_string('postdate', 'oublog'),
get_string('posttime', 'oublog'),
get_string('posttitle', 'oublog'),
);
$this->posts = array(get_string('posts', 'oublog'));
$this->comments = array(get_string('comments', 'oublog'));
$headers = array(
format_string($this->course->shortname, true),
format_string($this->oublog->name, true),
);
if (!empty($this->groupname)) {
$headers[] = $this->groupname;
}
$headers[] = $this->userfullname;
// set columns as the maximum otherwise the table
// won't add_data correctly
$columns = array();
for ($i = 1; $i <= 8; $i++) {
$columns[] = 'column'.$i;
}
$this->define_columns($columns);
$this->define_headers($headers);
$this->define_baseurl($PAGE->url);
$this->set_attribute('cellspacing', '0');
$this->set_attribute('id', 'participation');
$this->set_attribute('class', 'participation');
$this->set_attribute('width', '100%');
$this->set_attribute('align', 'center');
$this->sortable(false);
parent::setup();
}
/**
* This function is not part of the public api.
*
* Overriding here to avoid downloading in unsupported formats
*/
public function get_download_menu() {
$exportclasses = array('csv' => get_string('downloadcsv', 'oublog'));
return $exportclasses;
}
/**
* This function is not part of the public api.
*
* Overriding here to only print the download button on this page
*/
public function download_buttons() {
$html = '';
if ($this->is_downloadable() && !$this->is_downloading()) {
$downloadoptions = $this->get_download_menu();
$html = '<form action="'. $this->baseurl .'" method="post">';
$html .= '<div class="mdl-align">';
$html .= '<input type="submit" value="'.get_string('downloadas', 'oublog').'"/> ';
$html .= html_writer::select($downloadoptions, 'download',
$this->download, false);
$html .= '</div></form>';
}
return $html;
}
}