forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_form.php
210 lines (176 loc) · 8.69 KB
/
mod_form.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
<?php
if (!defined('MOODLE_INTERNAL')) {
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
}
require_once ($CFG->dirroot.'/course/moodleform_mod.php');
class mod_data_mod_form extends moodleform_mod {
function definition() {
global $CFG, $DB, $OUTPUT;
$mform =& $this->_form;
//-------------------------------------------------------------------------------
$mform->addElement('header', 'general', get_string('general', 'form'));
$mform->addElement('text', 'name', get_string('name'), array('size'=>'64'));
if (!empty($CFG->formatstringstriptags)) {
$mform->setType('name', PARAM_TEXT);
} else {
$mform->setType('name', PARAM_CLEANHTML);
}
$mform->addRule('name', null, 'required', null, 'client');
$mform->addRule('name', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
$this->standard_intro_elements(get_string('intro', 'data'));
// ----------------------------------------------------------------------
$mform->addElement('header', 'entrieshdr', get_string('entries', 'data'));
$mform->addElement('selectyesno', 'approval', get_string('requireapproval', 'data'));
$mform->addHelpButton('approval', 'requireapproval', 'data');
$mform->addElement('selectyesno', 'manageapproved', get_string('manageapproved', 'data'));
$mform->addHelpButton('manageapproved', 'manageapproved', 'data');
$mform->setDefault('manageapproved', 1);
$mform->hideIf('manageapproved', 'approval', 'eq', 0);
$mform->addElement('selectyesno', 'comments', get_string('allowcomments', 'data'));
if (empty($CFG->usecomments)) {
$mform->hardFreeze('comments');
$mform->setConstant('comments', 0);
}
$countoptions = array(0=>get_string('none'))+
(array_combine(range(1, DATA_MAX_ENTRIES), // Keys.
range(1, DATA_MAX_ENTRIES))); // Values.
/*only show fields if there are legacy values from
*before completionentries was added*/
if (!empty($this->current->requiredentries)) {
$group = array();
$group[] = $mform->createElement('select', 'requiredentries',
get_string('requiredentries', 'data'), $countoptions);
$mform->addGroup($group, 'requiredentriesgroup', get_string('requiredentries', 'data'), array(''), false);
$mform->addHelpButton('requiredentriesgroup', 'requiredentries', 'data');
$mform->addElement('html', $OUTPUT->notification( get_string('requiredentrieswarning', 'data')));
}
$mform->addElement('select', 'requiredentriestoview', get_string('requiredentriestoview', 'data'), $countoptions);
$mform->addHelpButton('requiredentriestoview', 'requiredentriestoview', 'data');
$mform->addElement('select', 'maxentries', get_string('maxentries', 'data'), $countoptions);
$mform->addHelpButton('maxentries', 'maxentries', 'data');
// ----------------------------------------------------------------------
$mform->addElement('header', 'availibilityhdr', get_string('availability'));
$mform->addElement('date_time_selector', 'timeavailablefrom', get_string('availablefromdate', 'data'),
array('optional' => true));
$mform->addElement('date_time_selector', 'timeavailableto', get_string('availabletodate', 'data'),
array('optional' => true));
$mform->addElement('date_time_selector', 'timeviewfrom', get_string('viewfromdate', 'data'),
array('optional' => true));
$mform->addElement('date_time_selector', 'timeviewto', get_string('viewtodate', 'data'),
array('optional' => true));
// ----------------------------------------------------------------------
if ($CFG->enablerssfeeds && $CFG->data_enablerssfeeds) {
$mform->addElement('header', 'rsshdr', get_string('rss'));
$mform->addElement('select', 'rssarticles', get_string('numberrssarticles', 'data') , $countoptions);
}
$this->standard_grading_coursemodule_elements();
$this->standard_coursemodule_elements();
//-------------------------------------------------------------------------------
// buttons
$this->add_action_buttons();
}
/**
* Enforce validation rules here
*
* @param array $data array of ("fieldname"=>value) of submitted data
* @param array $files array of uploaded files "element_name"=>tmp_file_path
* @return array
**/
public function validation($data, $files) {
$errors = parent::validation($data, $files);
// Check open and close times are consistent.
if ($data['timeavailablefrom'] && $data['timeavailableto'] &&
$data['timeavailableto'] < $data['timeavailablefrom']) {
$errors['timeavailableto'] = get_string('availabletodatevalidation', 'data');
}
if ($data['timeviewfrom'] && $data['timeviewto'] &&
$data['timeviewto'] < $data['timeviewfrom']) {
$errors['timeviewto'] = get_string('viewtodatevalidation', 'data');
}
return $errors;
}
/**
* Display module-specific activity completion rules.
* Part of the API defined by moodleform_mod
* @return array Array of string IDs of added items, empty array if none
*/
public function add_completion_rules() {
$mform = & $this->_form;
$group = [];
$suffix = $this->get_suffix();
$completionentriesenabledel = 'completionentriesenabled' . $suffix;
$group[] = $mform->createElement(
'checkbox',
$completionentriesenabledel,
'',
get_string('completionentriescount', 'data')
);
$completionentriesel = 'completionentries' . $suffix;
$group[] = $mform->createElement(
'text',
$completionentriesel,
get_string('completionentriescount', 'data'),
['size' => '1']
);
$completionentriesgroupel = 'completionentriesgroup' . $suffix;
$mform->addGroup(
$group,
$completionentriesgroupel,
'',
[' '],
false
);
$mform->hideIf($completionentriesel, $completionentriesenabledel, 'notchecked');
$mform->setDefault($completionentriesel, 1);
$mform->setType($completionentriesel, PARAM_INT);
/* This ensures the elements are disabled unless completion rules are enabled */
return [$completionentriesgroupel];
}
/**
* Called during validation. Indicates if a module-specific completion rule is selected.
*
* @param array $data
* @return bool True if one or more rules is enabled, false if none are.
*/
public function completion_rule_enabled($data) {
$suffix = $this->get_suffix();
return (!empty($data['completionentriesenabled' . $suffix]) && $data['completionentries' . $suffix] != 0);
}
/**
* Set up the completion checkbox which is not part of standard data.
*
* @param array $defaultvalues
*
*/
public function data_preprocessing(&$defaultvalues) {
parent::data_preprocessing($defaultvalues);
$suffix = $this->get_suffix();
$completionentriesenabledel = 'completionentriesenabled' . $suffix;
$completionentriesel = 'completionentries' . $suffix;
$defaultvalues[$completionentriesenabledel] = !empty($defaultvalues[$completionentriesel]) ? 1 : 0;
if (empty($defaultvalues[$completionentriesel])) {
$defaultvalues[$completionentriesel] = 1;
}
}
/**
* Allows modules to modify the data returned by form get_data().
* This method is also called in the bulk activity completion form.
*
* Only available on moodleform_mod.
*
* @param stdClass $data the form data to be modified.
*/
public function data_postprocessing($data) {
parent::data_postprocessing($data);
if (!empty($data->completionunlocked)) {
$suffix = $this->get_suffix();
$completionel = 'completion' . $suffix;
$completionentriesenabledel = 'completionentriesenabled' . $suffix;
$autocompletion = !empty($data->{$completionel}) && $data->{$completionel} == COMPLETION_TRACKING_AUTOMATIC;
if (empty($data->{$completionentriesenabledel}) || !$autocompletion) {
$completionentriesel = 'completionentries' . $suffix;
$data->{$completionentriesel} = 0;
}
}
}
}