-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsettingslib.php
More file actions
197 lines (185 loc) · 5.99 KB
/
settingslib.php
File metadata and controls
197 lines (185 loc) · 5.99 KB
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 mod_offlinequiz 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/>.
/**
* This is the settingslib for the offlinequiz admin settings
*
* @package mod_offlinequiz
* @subpackage offlinequiz
* @author Juergen Zimmer <zimmerj7@univie.ac.at>
* @copyright 2015 Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org}
* @since Moodle 2.2+
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* Admin settings class for the offlinequiz review opitions.
*
* @copyright 2015 Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class mod_offlinequiz_admin_review_setting extends admin_setting {
/**
* @var integer should match the constants defined in
*/
const DURING = 0x10000;
/**
* immediately after the offlinequiz
* @var int
*/
const IMMEDIATELY_AFTER = 0x01000;
/**
* later while the offlinequiz is still open
* @var int
*/
const LATER_WHILE_OPEN = 0x00100;
/**
* after the offlinequiz was closed
* @var int
*/
const AFTER_CLOSE = 0x00010;
/**
* @var bool|null forced checked / disabled attributes for the during time.
*/
protected $duringstate;
/**
* This should match mod_offlinequiz_mod_form::$reviewfields but copied
* here because generating the admin tree needs to be fast.
* @return array
*/
public static function fields() {
return [
'attempt' => get_string('theattempt', 'offlinequiz'),
'correctness' => get_string('whethercorrect', 'question'),
'marks' => get_string('marks', 'offlinequiz'),
'specificfeedback' => get_string('specificfeedback', 'question'),
'generalfeedback' => get_string('generalfeedback', 'question'),
'rightanswer' => get_string('rightanswer', 'question'),
'sheet' => get_string('scannedform', 'offlinequiz'),
'gradedsheet' => get_string('gradedscannedform', 'offlinequiz'),
];
}
/**
*
* @param string $name
* @param string $visiblename
* @param string $description
* @param string $defaultsetting
* @param string $duringstate
*/
public function __construct(
$name,
$visiblename,
$description,
$defaultsetting,
$duringstate = null
) {
$this->duringstate = $duringstate;
parent::__construct($name, $visiblename, $description, $defaultsetting);
}
/**
* returns all on
* @return int all times.
*/
public static function all_on() {
return self::AFTER_CLOSE;
}
/**
* summary of times
* @return string[]
*/
protected static function times() {
return [
self::AFTER_CLOSE => '',
];
}
/**
*
* @param array $data
*/
protected function normalise_data($data) {
$times = self::times();
$value = 0;
foreach ($times as $timemask => $name) {
if ($timemask == self::DURING && !is_null($this->duringstate)) {
if ($this->duringstate) {
$value += $timemask;
}
} else if (!empty($data[$timemask])) {
$value += $timemask;
}
}
return $value;
}
/**
* (non-PHPdoc)
* @see admin_setting::get_setting()
*/
public function get_setting() {
return $this->config_read($this->name);
}
/**
* write setting
* @param mixed $data
* @return string
*/
public function write_setting($data) {
if (is_array($data) || empty($data)) {
$data = $this->normalise_data($data);
}
$this->config_write($this->name, $data);
return '';
}
/**
* output html
* @param mixed $data
* @param mixed $query
* @return string
*/
public function output_html($data, $query = '') {
if (is_array($data) || empty($data)) {
$data = $this->normalise_data($data);
}
$return = '<div class="group"><input type="hidden" name="' .
$this->get_full_name() . '[' . self::DURING . ']" value="0" />';
foreach (self::times() as $timemask => $namestring) {
$id = $this->get_id() . '_' . $timemask;
$state = '';
if ($data & $timemask) {
$state = 'checked="checked" ';
}
if ($timemask == self::DURING && !is_null($this->duringstate)) {
$state = 'disabled="disabled" ';
if ($this->duringstate) {
$state .= 'checked="checked" ';
}
}
$return .= '<span><input type="checkbox" name="' .
$this->get_full_name() . '[' . $timemask . ']" value="1" id="' . $id .
'" ' . $state . '/> <label for="' . $id . '">' .
$namestring . "</label></span>\n";
}
$return .= "</div>\n";
return format_admin_setting(
$this,
$this->visiblename,
$return,
$this->description,
true,
'',
get_string('everythingon', 'offlinequiz'),
$query
);
}
}