-
Notifications
You must be signed in to change notification settings - Fork 5
/
bteceditor.php
385 lines (359 loc) · 15.3 KB
/
bteceditor.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
<?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/>.
/**
* This file contains the marking btec editor element
*
* @package gradingform_btec
* @copyright 2018 Marcus Green
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once("HTML/QuickForm/input.php");
require_once($CFG->dirroot . '/grade/grading/form/btec/lib.php');
/**
* The heavily YUI javascript powered editing form
* @package gradingform_btec
* @copyright 2018 Marcus Green
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class moodlequickform_bteceditor extends HTML_QuickForm_input {
/** @var string help message */
public $_helpbutton = '';
/** @var null|false|string stores the result of the last validation: null - undefined, false - no errors,
* string - error(s) text */
protected $validationerrors = null;
/** @var bool if element has already been validated * */
protected $wasvalidated = false;
/** @var null|bool If non-submit (JS) button was pressed: null - unknown, true/false - button was/wasn't pressed */
protected $nonjsbuttonpressed = false;
/** @var string|false Message to display in front of the editor (that there exist grades on this btec being edited) */
protected $regradeconfirmation = false;
/**
* Constructor
*
* @param string $elementname
* @param string $elementlabel
* @param array $attributes
* @param string $unusuedparam // Used to suppress codechecker useless override message.
*/
public function __construct($elementname=null, $elementlabel=null, $attributes=null, $unusuedparam=null) {
parent::__construct($elementname, $elementlabel, $attributes);
}
/**
* get html for help button
* @return string html for help button
*/
public function gethelpbutton() {
return $this->_helpbutton;
}
/**
* The renderer will take care itself about different display in normal and frozen states
*
* @return string
*/
public function getelementtemplatetype() {
return 'default';
}
/**
* Specifies that confirmation about re-grading needs to be added to this rubric editor.
* $changelevel is saved in $this->regradeconfirmation and retrieved in toHtml()
*
* @see gradingform_rubric_controller::update_or_check_rubric()
* @param int $changelevel
*/
public function add_regrade_confirmation($changelevel) {
$this->regradeconfirmation = $changelevel;
}
/**
* Returns html string to display this element
*
* @return string
*/
public function tohtml() {
global $PAGE;
$html = $this->_getTabs();
$renderer = $PAGE->get_renderer('gradingform_btec');
$data = $this->prepare_data(null, $this->wasvalidated);
if (!$this->_flagFrozen) {
$mode = gradingform_btec_controller::DISPLAY_EDIT_FULL;
$module = array('name' => 'gradingform_bteceditor',
'fullpath' => '/grade/grading/form/btec/js/bteceditor.js',
'strings' => array(
array('confirmdeletecriterion', 'gradingform_btec'),
array('clicktoedit', 'gradingform_btec'),
array('clicktoeditname', 'gradingform_btec')
));
$PAGE->requires->js_init_call('M.gradingform_bteceditor.init', array(
array('name' => $this->getName(),
'criteriontemplate' => $renderer->criterion_template($mode, $data['options'], $this->getName()),
'commenttemplate' => $renderer->comment_template($mode, $this->getName())
)), true, $module);
} else {
/* btec is frozen, no javascript needed. */
if ($this->_persistantFreeze) {
$mode = gradingform_btec_controller::DISPLAY_EDIT_FROZEN;
} else {
$mode = gradingform_btec_controller::DISPLAY_PREVIEW;
}
}
if ($this->regradeconfirmation) {
if (!isset($data['regrade'])) {
$data['regrade'] = 1;
}
$html .= $renderer->display_regrade_confirmation($this->getName(), $this->regradeconfirmation, $data['regrade']);
}
if ($this->validationerrors) {
$html .= '<div class="gradingform_btec-error">' . $renderer->notification($this->validationerrors, 'error') . '</div>';
}
$html .= $renderer->display_btec($data['criteria'], $data['comments'], $data['options'], $mode, $this->getName());
return $html;
}
/**
* Prepares the data passed in $_POST:
* - processes the pressed buttons 'addlevel', 'addcriterion', 'moveup', 'movedown', 'delete' (when JavaScript is disabled)
* sets $this->nonjsbuttonpressed to true/false if such button was pressed
* - if options not passed (i.e. we create a new btec) fills the options array with the default values
* - if options are passed completes the options array with unchecked checkboxes
* - if $withvalidation is set, adds 'error_xxx' attributes to elements that contain errors and creates an error string
* and stores it in $this->validationerrors
*
* @param array $value
* @param boolean $withvalidation whether to enable data validation
* @return array
*/
protected function prepare_data($value = null, $withvalidation = false) {
if (null === $value) {
$value = $this->getValue();
}
if ($this->nonjsbuttonpressed === null) {
$this->nonjsbuttonpressed = false;
}
$errors = array();
$return = array('criteria' => array(), 'options' => gradingform_btec_controller::get_default_options(),
'comments' => array());
if (!isset($value['criteria'])) {
$value['criteria'] = array();
$errors['err_nocriteria'] = 1;
}
// If options are present in $value, replace default values with submitted values.
if (!empty($value['options'])) {
foreach (array_keys($return['options']) as $option) {
// Special treatment for checkboxes.
if (!empty($value['options'][$option])) {
$return['options'][$option] = $value['options'][$option];
} else {
$return['options'][$option] = null;
}
}
}
if (is_array($value)) {
// For other array keys of $value no special treatmeant neeeded, copy them to return value as is.
foreach (array_keys($value) as $key) {
if ($key != 'options' && $key != 'criteria' && $key != 'comments') {
$return[$key] = $value[$key];
}
}
}
// Iterate through criteria.
$lastaction = null;
$lastid = null;
foreach ($value['criteria'] as $id => $criterion) {
if ($id == 'addcriterion') {
$id = $this->get_next_id(array_keys($value['criteria']));
$criterion = array('description' => '');
$this->nonjsbuttonpressed = true;
}
if (array_key_exists('moveup', $criterion) || $lastaction == 'movedown') {
unset($criterion['moveup']);
if ($lastid !== null) {
$lastcriterion = $return['criteria'][$lastid];
unset($return['criteria'][$lastid]);
$return['criteria'][$id] = $criterion;
$return['criteria'][$lastid] = $lastcriterion;
} else {
$return['criteria'][$id] = $criterion;
}
$lastaction = null;
$lastid = $id;
$this->nonjsbuttonpressed = true;
} else if (array_key_exists('delete', $criterion)) {
$this->nonjsbuttonpressed = true;
} else {
if (array_key_exists('movedown', $criterion)) {
unset($criterion['movedown']);
$lastaction = 'movedown';
$this->nonjsbuttonpressed = true;
}
$return['criteria'][$id] = $criterion;
$lastid = $id;
}
}
// Add sort order field to criteria.
$csortorder = 1;
foreach (array_keys($return['criteria']) as $id) {
$return['criteria'][$id]['sortorder'] = $csortorder++;
}
// Iterate through comments.
$lastaction = null;
$lastid = null;
if (!empty($value['comments'])) {
foreach ($value['comments'] as $id => $comment) {
if ($id == 'addcomment') {
$id = $this->get_next_id(array_keys($value['comments']));
$comment = array('description' => '');
$this->nonjsbuttonpressed = true;
}
if (array_key_exists('moveup', $comment) || $lastaction == 'movedown') {
unset($comment['moveup']);
if ($lastid !== null) {
$lastcomment = $return['comments'][$lastid];
unset($return['comments'][$lastid]);
$return['comments'][$id] = $comment;
$return['comments'][$lastid] = $lastcomment;
} else {
$return['comments'][$id] = $comment;
}
$lastaction = null;
$lastid = $id;
$this->nonjsbuttonpressed = true;
} else if (array_key_exists('delete', $comment)) {
$this->nonjsbuttonpressed = true;
} else {
if (array_key_exists('movedown', $comment)) {
unset($comment['movedown']);
$lastaction = 'movedown';
$this->nonjsbuttonpressed = true;
}
$return['comments'][$id] = $comment;
$lastid = $id;
}
}
// Add sort order field to comments.
$csortorder = 1;
foreach (array_keys($return['comments']) as $id) {
$return['comments'][$id]['sortorder'] = $csortorder++;
}
}
// Create validation error string (if needed).
if ($withvalidation) {
if (count($errors)) {
$rv = array();
foreach ($errors as $error => $v) {
$rv[] = get_string($error, 'gradingform_btec');
}
$this->validationerrors = join('<br/ >', $rv);
} else {
$this->validationerrors = false;
}
$this->wasvalidated = true;
}
return $return;
}
/**
* Scans array $ids to find the biggest element ! NEWID*, increments it by 1 and returns
*
* @param array $ids
* @return string
*/
protected function get_next_id($ids) {
$maxid = 0;
foreach ($ids as $id) {
if (preg_match('/^NEWID(\d+)$/', $id, $matches) && ((int) $matches[1]) > $maxid) {
$maxid = (int) $matches[1];
}
}
return 'NEWID' . ($maxid + 1);
}
/**
* Checks if a submit button was pressed which is supposed to be processed on client side by JS
* but user seem to have disabled JS in the browser.
* (buttons 'add criteria', 'add level', 'move up', 'move down', 'add comment')
* In this case the form containing this element is prevented from being submitted
*
* @param array $value
* @return boolean true if non-submit button was pressed and not processed by JS
*/
public function non_js_button_pressed($value) {
if ($this->nonjsbuttonpressed === null) {
$this->prepare_data($value);
}
return $this->nonjsbuttonpressed;
}
/**
* Validates that btec has at least one criterion, filled definitions and all criteria
* have filled descriptions, and no criteria is duplicated
*
* @param array $value
* @return string|false error text or false if no errors found
*/
public function validate($value) {
$scaleletters = gradingform_btec_controller::get_scale_letters();
$p = $scaleletters['p'];
$m = $scaleletters['m'];
$d = $scaleletters['d'];
$criteria = $value['criteria'];
$shortnamerror = false;
$shortnames = array();
foreach ($criteria as $key => $element) {
$level = trim($element['shortname']);
$level = strtolower($level);
$a = array('level' => strtoupper($level), 'p' => strtoupper($p), 'm' => strtoupper($m), 'd' => strtoupper($d));
$level = substr($level, 0, 1);
if ($element['shortname'] == "") {
$this->validationerrors .= get_string('level', 'gradingform_btec');
}
if ($level != $p && $level != $m && $level != $d) {
$this->validationerrors .= ' ' . get_string('startwithpmd', 'gradingform_btec', $a);
$shortnamerror = true;
}
$number = trim($element['shortname']);
$len = strlen($number);
/* Chop off the last character to check if it is a digit */
$number = substr($number, ($len - 1), $len);
if (!is_numeric($number)) {
if ($shortnamerror == true) {
/* if there is already an error add the 'and' onto the error text */
$this->validationerrors .= $element['shortname'] . ' ' . get_string('and', 'gradingform_btec') . ' ';
}
$this->validationerrors .= $element['shortname'] . ' ' . get_string('endwithadigit', 'gradingform_btec') . ' ';
$shortnamerror = true;
}
$shortnames[$key] = $element['shortname'];
}
/* extract any duplicate shortnames */
$dupes = array_unique(array_diff_assoc($shortnames, array_unique($shortnames)));
if (count($dupes) > 0) {
$this->validationerrors .= get_string('duplicateelements', 'gradingform_btec') . implode(' ', $dupes);
$shortnamerror = true;
}
if (($shortnamerror != true) && (!$this->wasvalidated)) {
$this->prepare_data($value, true);
}
return $this->validationerrors;
}
/**
* Prepares the data for saving
* @see prepare_data()
*
* @param array $submitvalues
* @param boolean $assoc
* @return array
*/
public function exportvalue(&$submitvalues, $assoc = false) {
$value = $this->prepare_data($this->_findValue($submitvalues));
return $this->_prepareValue($value, $assoc);
}
}