-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsettings.php
100 lines (84 loc) · 4.29 KB
/
settings.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
<?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/>.
/**
* Admin settings for filter_embedquestion.
*
* @package filter_embedquestion
* @copyright 2018 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
if ($ADMIN->fulltree) {
require_once($CFG->libdir . '/questionlib.php');
$hiddenorvisible = [
question_display_options::HIDDEN => get_string('notshown', 'question'),
question_display_options::VISIBLE => get_string('shown', 'question'),
];
$marksoptions = [
question_display_options::HIDDEN => get_string('notshown', 'question'),
question_display_options::MAX_ONLY => get_string('showmaxmarkonly', 'question'),
question_display_options::MARK_AND_MAX => get_string('showmarkandmax', 'question'),
];
// Intro text.
$settings->add(new admin_setting_heading('filter_embedquestion/defaultinfo',
get_string('defaultsheading', 'filter_embedquestion'),
get_string('defaultsheading_desc', 'filter_embedquestion')));
// Behaviour.
$settings->add(new filter_embedquestion\admin\question_behaviour_setting(
'filter_embedquestion/behaviour', get_string('howquestionbehaves', 'filter_embedquestion'),
get_string('howquestionbehaves_desc', 'filter_embedquestion'), 'interactive', null));
// Correctness.
$settings->add(new admin_setting_configselect('filter_embedquestion/correctness',
get_string('whethercorrect', 'question'),
get_string('whethercorrect_desc', 'filter_embedquestion'),
1, $hiddenorvisible));
// Show marks.
$settings->add(new admin_setting_configselect('filter_embedquestion/marks',
get_string('marks', 'question'),
get_string('marks_desc', 'filter_embedquestion'), 2, $marksoptions));
// Decimal places in grades.
$settings->add(new admin_setting_configselect('filter_embedquestion/markdp',
get_string('decimalplaces', 'quiz'), get_string('markdp_desc', 'filter_embedquestion'),
2, question_engine::get_dp_options()));
// Specific feedback.
$settings->add(new admin_setting_configselect('filter_embedquestion/feedback',
get_string('specificfeedback', 'question'),
get_string('specificfeedback_desc', 'filter_embedquestion'),
1, $hiddenorvisible));
// General feedback.
$settings->add(new admin_setting_configselect('filter_embedquestion/generalfeedback',
get_string('generalfeedback', 'question'),
get_string('generalfeedback_desc', 'filter_embedquestion'),
1, $hiddenorvisible));
// Right answer.
$settings->add(new admin_setting_configselect('filter_embedquestion/rightanswer',
get_string('rightanswer', 'question'),
get_string('rightanswer_desc', 'filter_embedquestion'),
0, $hiddenorvisible));
// Response history.
$settings->add(new admin_setting_configselect('filter_embedquestion/history',
get_string('responsehistory', 'question'),
get_string('responsehistory_desc', 'filter_embedquestion'),
0, $hiddenorvisible));
// Security header.
$settings->add(new admin_setting_heading('filter_embedquestion/securityinfo',
get_string('securityheading', 'filter_embedquestion'), ''));
// Authorized secrets.
$settings->add(new admin_setting_configtextarea('filter_embedquestion/authorizedsecrets',
get_string('authorizedsecrets', 'filter_embedquestion'),
get_string('authorizedsecrets_desc', 'filter_embedquestion',
get_config('filter_embedquestion', 'secret')), ''));
}