-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderer.php
executable file
·524 lines (504 loc) · 28.9 KB
/
renderer.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<?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/>.
/**
* Contains renderer used for displaying simplefeedbackrubric
*
* @package gradingform_simplefeedbackrubric
* @copyright 2016 onwards Catalyst IT {@link http://www.catalyst-eu.net/}
* @author Edwin Phillips <edwin.phillips@catalyst-eu.net>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*
* Based on code originating from package gradingform_rubric
* @copyright 2011 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Grading method plugin renderer
*
* @package gradingform_simplefeedbackrubric
* @copyright 2016 onwards Catalyst IT {@link http://www.catalyst-eu.net/}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*
* Based on code originating from package gradingform_rubric
* @copyright 2011 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class gradingform_simplefeedbackrubric_renderer extends plugin_renderer_base {
/**
* This function returns html code for displaying criterion. Depending on $mode it may be the
* code to edit simplefeedbackrubric, to preview the simplefeedbackrubric, to evaluate somebody or to review the evaluation.
*
* This function may be called from display_simplefeedbackrubric() to display the whole simplefeedbackrubric, or it can be
* called by itself to return a template used by JavaScript to add new empty criteria to the
* simplefeedbackrubric being designed.
* In this case it will use macros like {NAME}, {LEVELS}, {CRITERION-id}, etc.
*
* When overriding this function it is very important to remember that all elements of html
* form (in edit or evaluate mode) must have the name $elementname.
*
* Also JavaScript relies on the class names of elements and when developer changes them
* script might stop working.
*
* @param int $mode simplefeedbackrubric display mode, see {@link gradingform_simplefeedbackrubric_controller}
* @param array $options display options for this simplefeedbackrubric, defaults are:
* {@link gradingform_simplefeedbackrubric_controller::get_default_options()}
* @param string $elementname the name of the form element (in editor mode) or the prefix for div ids (in view mode)
* @param array|null $criterion criterion data
* @param string $levelsstr evaluated templates for this criterion levels
* @param array|null $value (only in view mode) teacher's feedback on this criterion
* @return string
*/
public function criterion_template($mode, $options, $elementname = '{NAME}',
$criterion = null, $levelsstr = '{LEVELS}', $value = null) {
if ($criterion === null || !is_array($criterion) || !array_key_exists('id', $criterion)) {
$criterion = array('id' => '{CRITERION-id}', 'description' => '{CRITERION-description}',
'sortorder' => '{CRITERION-sortorder}', 'class' => '{CRITERION-class}');
} else {
foreach (array('sortorder', 'description', 'class') as $key) {
// Set missing array elements to empty strings to avoid warnings.
if (!array_key_exists($key, $criterion)) {
$criterion[$key] = '';
}
}
}
$criteriontemplate = html_writer::start_tag('tr', array('class' => 'criterion'. $criterion['class'],
'id' => '{NAME}-criteria-{CRITERION-id}'));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$criteriontemplate .= html_writer::start_tag('td', array('class' => 'controls'));
foreach (array('moveup', 'delete', 'movedown', 'duplicate') as $key) {
$value = get_string('criterion'.$key, 'gradingform_simplefeedbackrubric');
$button = html_writer::empty_tag('input',
array('type' => 'submit', 'name' => '{NAME}[criteria][{CRITERION-id}]['.$key.']',
'id' => '{NAME}-criteria-{CRITERION-id}-'.$key, 'value' => $value, 'title' => $value, 'tabindex' => -1));
$criteriontemplate .= html_writer::tag('div', $button, array('class' => $key));
}
$criteriontemplate .= html_writer::end_tag('td'); // Class controls.
$criteriontemplate .= html_writer::empty_tag('input',
array('type' => 'hidden', 'name' => '{NAME}[criteria][{CRITERION-id}][sortorder]',
'value' => $criterion['sortorder']));
$description = html_writer::tag('textarea', s($criterion['description']),
array('name' => '{NAME}[criteria][{CRITERION-id}][description]', 'cols' => '10', 'rows' => '5'));
} else {
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN) {
$criteriontemplate .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => '{NAME}[criteria][{CRITERION-id}][sortorder]', 'value' => $criterion['sortorder']));
$criteriontemplate .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => '{NAME}[criteria][{CRITERION-id}][description]', 'value' => $criterion['description']));
}
$description = s($criterion['description']);
}
$descriptionclass = 'description';
if (isset($criterion['error_description'])) {
$descriptionclass .= ' error';
}
$criteriontemplate .= html_writer::tag('td', $description,
array('class' => $descriptionclass, 'id' => '{NAME}-criteria-{CRITERION-id}-description'));
$levelsstrtable = html_writer::tag('table', html_writer::tag('tr',
$levelsstr, array('id' => '{NAME}-criteria-{CRITERION-id}-levels')));
$levelsclass = 'levels';
if (isset($criterion['error_levels'])) {
$levelsclass .= ' error';
}
$criteriontemplate .= html_writer::tag('td', $levelsstrtable, array('class' => $levelsclass));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$value = get_string('criterionaddlevel', 'gradingform_simplefeedbackrubric');
$button = html_writer::empty_tag('input', array('type' => 'submit',
'name' => '{NAME}[criteria][{CRITERION-id}][levels][addlevel]',
'id' => '{NAME}-criteria-{CRITERION-id}-levels-addlevel', 'value' => $value, 'title' => $value));
$criteriontemplate .= html_writer::tag('td', $button, array('class' => 'addlevel'));
}
$criteriontemplate .= html_writer::end_tag('tr'); // Class criterion.
$criteriontemplate = str_replace('{NAME}', $elementname, $criteriontemplate);
$criteriontemplate = str_replace('{CRITERION-id}', $criterion['id'], $criteriontemplate);
return $criteriontemplate;
}
/**
* This function returns html code for displaying one level of one criterion. Depending on $mode
* it may be the code to edit simplefeedbackrubric,
* to preview the simplefeedbackrubric, to evaluate somebody or to review the evaluation.
*
* This function may be called from display_simplefeedbackrubric() to display the whole simplefeedbackrubric, or it can be
* called by itself to return a template used by JavaScript to add new empty level to the
* criterion during the design of simplefeedbackrubric.
* In this case it will use macros like {NAME}, {CRITERION-id}, {LEVEL-id}, etc.
*
* When overriding this function it is very important to remember that all elements of html
* form (in edit or evaluate mode) must have the name $elementname.
*
* Also JavaScript relies on the class names of elements and when developer changes them.
* script might stop working.
*
* @param int $mode simplefeedbackrubric display mode see
* {@link gradingform_simplefeedbackrubric_controller}
* @param array $options display options for this simplefeedbackrubric,
* defaults are: {@link gradingform_simplefeedbackrubric_controller::get_default_options()}
* @param string $elementname the name of the form element (in editor mode) or the prefix for div ids (in view mode)
* @param string|int $criterionid either id of the nesting criterion or a macro for template
* @param array|null $level level data, also in view mode it might also have
* property $level['checked'] whether this level is checked
* @return string
*/
public function level_template($mode, $options, $elementname = '{NAME}', $criterionid = '{CRITERION-id}', $level = null) {
// TODO MDL-31235 definition format.
if (!isset($level['id'])) {
$level = array('id' => '{LEVEL-id}', 'definition' => '{LEVEL-definition}',
'class' => '{LEVEL-class}', 'checked' => false);
} else {
foreach (array('score', 'definition', 'class', 'checked') as $key) {
// Set missing array elements to empty strings to avoid warnings.
if (!array_key_exists($key, $level)) {
$level[$key] = '';
}
}
}
// Template for one level within one criterion.
$tdattributes = array('id' => '{NAME}-criteria-{CRITERION-id}-levels-{LEVEL-id}', 'class' => 'level'. $level['class']);
if (isset($level['tdwidth'])) {
$tdattributes['width'] = round($level['tdwidth']).'%';
}
$leveltemplate = html_writer::start_tag('td', $tdattributes);
$leveltemplate .= html_writer::start_tag('div', array('class' => 'level-wrapper'));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$definition = html_writer::tag('textarea', s($level['definition']),
array('name' => '{NAME}[criteria][{CRITERION-id}][levels][{LEVEL-id}][definition]',
'cols' => '10', 'rows' => '4'));
} else {
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN) {
$leveltemplate .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => '{NAME}[criteria][{CRITERION-id}][levels][{LEVEL-id}][definition]', 'value' => $level['definition']));
}
$definition = s($level['definition']);
}
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EVAL) {
$input = html_writer::empty_tag('input', array('type' => 'radio',
'name' => '{NAME}[criteria][{CRITERION-id}][levelid]',
'value' => $level['id']) + ($level['checked'] ? array('checked' => 'checked') : array()));
$leveltemplate .= html_writer::tag('div', $input, array('class' => 'radio'));
}
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EVAL_FROZEN && $level['checked']) {
$leveltemplate .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => '{NAME}[criteria][{CRITERION-id}][levelid]', 'value' => $level['id']));
}
$definitionclass = 'definition';
if (isset($level['error_definition'])) {
$definitionclass .= ' error';
}
$leveltemplate .= html_writer::tag('div', $definition, array('class' => $definitionclass,
'id' => '{NAME}-criteria-{CRITERION-id}-levels-{LEVEL-id}-definition'));
$leveltemplate .= html_writer::tag('div', ' ', array('class' => 'sfrubric-spacer'));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$value = get_string('leveldelete', 'gradingform_simplefeedbackrubric');
$button = html_writer::empty_tag('input', array('type' => 'submit',
'name' => '{NAME}[criteria][{CRITERION-id}][levels][{LEVEL-id}][delete]',
'id' => '{NAME}-criteria-{CRITERION-id}-levels-{LEVEL-id}-delete',
'value' => $value, 'title' => $value, 'tabindex' => -1));
$leveltemplate .= html_writer::tag('div', $button, array('class' => 'delete'));
}
$leveltemplate .= html_writer::end_tag('div'); // Class .level-wrapper.
$leveltemplate .= html_writer::end_tag('td'); // Class .level.
$leveltemplate = str_replace('{NAME}', $elementname, $leveltemplate);
$leveltemplate = str_replace('{CRITERION-id}', $criterionid, $leveltemplate);
$leveltemplate = str_replace('{LEVEL-id}', $level['id'], $leveltemplate);
return $leveltemplate;
}
/**
* This function returns html code for displaying simplefeedbackrubric template (content before and after
* criteria list). Depending on $mode it may be the code to edit simplefeedbackrubric, to preview the simplefeedbackrubric,
* to evaluate somebody or to review the evaluation.
*
* This function is called from display_simplefeedbackrubric() to display the whole simplefeedbackrubric.
*
* When overriding this function it is very important to remember that all elements of html
* form (in edit or evaluate mode) must have the name $elementname.
*
* Also JavaScript relies on the class names of elements and when developer changes them
* script might stop working.
*
* @param int $mode simplefeedbackrubric display mode see {@link gradingform_simplefeedbackrubric_controller}
* @param array $options display options for this simplefeedbackrubric,
* defaults are: {@link gradingform_simplefeedbackrubric_controller::get_default_options()}
* @param string $elementname the name of the form element (in editor mode) or the prefix for div ids (in view mode)
* @param string $criteriastr evaluated templates for this simplefeedbackrubric's criteria
* @return string
*/
protected function simplefeedbackrubric_template($mode, $options, $elementname, $criteriastr, $grademenu = null, $grade) {
$classsuffix = ''; // CSS suffix for class of the main div. Depends on the mode.
switch ($mode) {
case gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL:
$classsuffix = ' editor editable';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN:
$classsuffix = ' editor frozen';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_PREVIEW:
case gradingform_simplefeedbackrubric_controller::DISPLAY_PREVIEW_GRADED:
$classsuffix = ' editor preview';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_EVAL:
$classsuffix = ' evaluate editable';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_EVAL_FROZEN:
$classsuffix = ' evaluate frozen';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_REVIEW:
$classsuffix = ' review';
break;
case gradingform_simplefeedbackrubric_controller::DISPLAY_VIEW:
$classsuffix = ' view';
break;
}
$simplefeedbackrubrictemplate = html_writer::start_tag('div', array('id' => 'simplefeedbackrubric-{NAME}',
'class' => 'clearfix gradingform_simplefeedbackrubric'.$classsuffix));
if ($grademenu) {
$simplefeedbackrubrictemplate .= html_writer::select($grademenu,
'advancedgrading[grade]', $grade, false, array('id' => 'feedback_grade'));
$feedbacklabel = html_writer::label(get_string('feedbackrubric', 'gradingform_simplefeedbackrubric'),
'id_advancedgrading');
$simplefeedbackrubrictemplate .= html_writer::div($feedbacklabel, 'fitemtitle');
}
$simplefeedbackrubrictemplate .= html_writer::tag('table', $criteriastr,
array('class' => 'criteria', 'id' => '{NAME}-criteria'));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$value = get_string('addcriterion', 'gradingform_simplefeedbackrubric');
$input = html_writer::empty_tag('input', array('type' => 'submit',
'name' => '{NAME}[criteria][addcriterion]', 'id' => '{NAME}-criteria-addcriterion',
'value' => $value, 'title' => $value));
$simplefeedbackrubrictemplate .= html_writer::tag('div', $input, array('class' => 'addcriterion'));
}
$simplefeedbackrubrictemplate .= $this->simplefeedbackrubric_edit_options($mode, $options);
$simplefeedbackrubrictemplate .= html_writer::end_tag('div');
return str_replace('{NAME}', $elementname, $simplefeedbackrubrictemplate);
}
/**
* Generates html template to view/edit the simplefeedbackrubric options. Expression {NAME} is used in
* template for the form element name
*
* @param int $mode simplefeedbackrubric display mode see {@link gradingform_simplefeedbackrubric_controller}
* @param array $options display options for this simplefeedbackrubric,
* defaults are: {@link gradingform_simplefeedbackrubric_controller::get_default_options()}
* @return string
*/
protected function simplefeedbackrubric_edit_options($mode, $options) {
if ($mode != gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL
&& $mode != gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN
&& $mode != gradingform_simplefeedbackrubric_controller::DISPLAY_PREVIEW) {
// Options are displayed only for people who can manage.
return;
}
$html = html_writer::start_tag('div', array('class' => 'options'));
$html .= html_writer::tag('div', get_string('simplefeedbackrubricoptions', 'gradingform_simplefeedbackrubric'),
array('class' => 'optionsheading'));
$attrs = array('type' => 'hidden', 'name' => '{NAME}[options][optionsset]', 'value' => 1);
foreach ($options as $option => $value) {
$html .= html_writer::start_tag('div', array('class' => 'option '.$option));
$attrs = array('name' => '{NAME}[options]['.$option.']', 'id' => '{NAME}-options-'.$option);
switch ($option) {
case 'showdescriptionteacher':
case 'criterionordering':
case 'autopopulatecomments':
// Display option as dropdown.
$html .= html_writer::label(get_string($option, 'gradingform_simplefeedbackrubric'),
$attrs['id'], false, array('class' => 'label'));
$value = (int)(!!$value); // Make sure $value is either 0 or 1.
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FULL) {
$selectoptions = array(
0 => get_string($option.'0', 'gradingform_simplefeedbackrubric'),
1 => get_string($option.'1', 'gradingform_simplefeedbackrubric')
);
$valuestr = html_writer::select($selectoptions, $attrs['name'], $value, false, array('id' => $attrs['id']));
$html .= html_writer::tag('span', $valuestr, array('class' => 'value'));
} else {
$html .= html_writer::tag('span', get_string($option.$value, 'gradingform_simplefeedbackrubric'),
array('class' => 'value'));
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN) {
$html .= html_writer::empty_tag('input', $attrs + array('type' => 'hidden', 'value' => $value));
}
}
break;
default:
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN && $value) {
$html .= html_writer::empty_tag('input', $attrs + array('type' => 'hidden', 'value' => $value));
}
// Display option as checkbox.
$attrs['type'] = 'checkbox';
$attrs['value'] = 1;
if ($value) {
$attrs['checked'] = 'checked';
}
if ($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EDIT_FROZEN ||
$mode == gradingform_simplefeedbackrubric_controller::DISPLAY_PREVIEW) {
$attrs['disabled'] = 'disabled';
unset($attrs['name']);
}
$html .= html_writer::empty_tag('input', $attrs);
$html .= html_writer::tag('label', get_string($option, 'gradingform_simplefeedbackrubric'),
array('for' => $attrs['id']));
break;
}
$html .= html_writer::end_tag('div'); // Class option.
}
$html .= html_writer::end_tag('div'); // Class options.
return $html;
}
/**
* This function returns html code for displaying simplefeedbackrubric. Depending on $mode it may be the code
* to edit simplefeedbackrubric, to preview the simplefeedbackrubric, to evaluate somebody or to review the evaluation.
*
* It is very unlikely that this function needs to be overriden by theme. It does not produce
* any html code, it just prepares data about simplefeedbackrubric design and evaluation, adds the CSS
* class to elements and calls the functions level_template, criterion_template and
* simplefeedbackrubric_template
*
* @param array $criteria data about the simplefeedbackrubric design
* @param array $options display options for this simplefeedbackrubric,
* defaults are: {@link gradingform_simplefeedbackrubric_controller::get_default_options()}
* @param int $mode simplefeedbackrubric display mode, see {@link gradingform_simplefeedbackrubric_controller}
* @param string $elementname the name of the form element (in editor mode) or the prefix for div ids (in view mode)
* @param array $values evaluation result
* @return string
*/
public function display_simplefeedbackrubric($criteria, $options, $mode,
$elementname = null, $values = null, $grademenu = null, $grade = null) {
$criteriastr = '';
$cnt = 0;
foreach ($criteria as $id => $criterion) {
$criterion['class'] = $this->get_css_class_suffix($cnt++, count($criteria) - 1);
$criterion['id'] = $id;
$levelsstr = '';
$levelcnt = 0;
if (isset($values['criteria'][$id])) {
$criterionvalue = $values['criteria'][$id];
} else {
$criterionvalue = null;
}
foreach ($criterion['levels'] as $levelid => $level) {
$level['id'] = $levelid;
$level['class'] = $this->get_css_class_suffix($levelcnt++, count($criterion['levels']) - 1);
$level['checked'] = (isset($criterionvalue['levelid']) && ((int)$criterionvalue['levelid'] === $levelid));
if ($level['checked'] &&
($mode == gradingform_simplefeedbackrubric_controller::DISPLAY_EVAL_FROZEN
|| $mode == gradingform_simplefeedbackrubric_controller::DISPLAY_REVIEW
|| $mode == gradingform_simplefeedbackrubric_controller::DISPLAY_VIEW)
) {
$level['class'] .= ' checked';
// In mode DISPLAY_EVAL the class 'checked' will be added by JS if it is enabled.
// If JS is not enabled, the 'checked' class will only confuse.
}
if (isset($criterionvalue['savedlevelid']) && ((int)$criterionvalue['savedlevelid'] === $levelid)) {
$level['class'] .= ' currentchecked';
}
$level['tdwidth'] = 100 / count($criterion['levels']);
$levelsstr .= $this->level_template($mode, $options, $elementname, $id, $level);
}
$criteriastr .= $this->criterion_template($mode, $options, $elementname, $criterion, $levelsstr, $criterionvalue);
}
return $this->simplefeedbackrubric_template($mode, $options, $elementname, $criteriastr, $grademenu, $grade);
}
/**
* Help function to return CSS class names for element (first/last/even/odd) with leading space
*
* @param int $idx index of this element in the row/column
* @param int $maxidx maximum index of the element in the row/column
* @return string
*/
protected function get_css_class_suffix($idx, $maxidx) {
$class = '';
if ($idx == 0) {
$class .= ' first';
}
if ($idx == $maxidx) {
$class .= ' last';
}
if ($idx % 2) {
$class .= ' odd';
} else {
$class .= ' even';
}
return $class;
}
/**
* Displays for the student the list of instances or default content if no instances found
*
* @param array $instances array of objects of type gradingform_simplefeedbackrubric_instance
* @param string $defaultcontent default string that would be displayed without advanced grading
* @param boolean $cangrade whether current user has capability to grade in this context
* @return string
*/
public function display_instances($instances, $defaultcontent, $cangrade) {
$return = '';
if (count($instances)) {
$return .= html_writer::start_tag('div', array('class' => 'advancedgrade'));
$idx = 0;
foreach ($instances as $instance) {
$return .= $this->display_instance($instance, $idx++, $cangrade);
}
$return .= html_writer::end_tag('div');
}
return $return. $defaultcontent;
}
/**
* Displays one grading instance
*
* @param gradingform_simplefeedbackrubric_instance $instance
* @param int $idx unique number of instance on page
* @param bool $cangrade whether current user has capability to grade in this context
*/
public function display_instance(gradingform_simplefeedbackrubric_instance $instance, $idx, $cangrade) {
$criteria = $instance->get_controller()->get_definition()->simplefeedbackrubric_criteria;
$options = $instance->get_controller()->get_options();
$values = $instance->get_simplefeedbackrubric_filling();
if ($cangrade) {
$mode = gradingform_simplefeedbackrubric_controller::DISPLAY_REVIEW;
$showdescription = $options['showdescriptionteacher'];
} else {
$mode = gradingform_simplefeedbackrubric_controller::DISPLAY_VIEW;
$showdescription = null;
}
$output = '';
if ($showdescription) {
$output .= $this->box($instance->get_controller()->get_formatted_description(),
'gradingform_simplefeedbackrubric-description');
}
$output .= $this->display_simplefeedbackrubric($criteria, $options, $mode, 'simplefeedbackrubric'.$idx, $values);
return $output;
}
/**
* Displays confirmation that students require re-grading
*
* @param string $elementname
* @param int $changelevel
* @param string $value
* @return string
*/
public function display_regrade_confirmation($elementname, $changelevel, $value) {
$html = html_writer::start_tag('div', array('class' => 'gradingform_simplefeedbackrubric-regrade'));
if ($changelevel <= 2) {
$html .= html_writer::label(get_string('regrademessage1', 'gradingform_simplefeedbackrubric'),
'menu' . $elementname . 'regrade');
$selectoptions = array(
0 => get_string('regradeoption0', 'gradingform_simplefeedbackrubric'),
1 => get_string('regradeoption1', 'gradingform_simplefeedbackrubric')
);
$html .= html_writer::select($selectoptions, $elementname.'[regrade]', $value, false);
} else {
$html .= get_string('regrademessage5', 'gradingform_simplefeedbackrubric');
$html .= html_writer::empty_tag('input', array('name' => $elementname.'[regrade]', 'value' => 1, 'type' => 'hidden'));
}
$html .= html_writer::end_tag('div');
return $html;
}
}