-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.php
More file actions
executable file
·420 lines (375 loc) · 16.1 KB
/
lib.php
File metadata and controls
executable file
·420 lines (375 loc) · 16.1 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
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
<?php
/**
* This file contains general functions for the course format MoodleFN format
*
*
*/
require_once ($CFG->dirroot . '/course/lib.php');
define('FN_EXTRASECTION', 9999); // A non-existant section to hold hidden modules.
/// Format Specific Functions:
function FN_update_course($form, $oldformat = false, $resubmission=false) {
global $CFG, $DB, $OUTPUT;
$config_vars = array('showsection0', 'sec0title', 'mainheading', 'topicheading', 'maxtabs');
foreach ($config_vars as $config_var) {
if ($varrec = $DB->get_record('course_config_fn', array('courseid' => $form->id, 'variable' => $config_var))) {
$varrec->value = $form->$config_var;
$DB->update_record('course_config_fn', $varrec);
} else {
$varrec->courseid = $form->id;
$varrec->variable = $config_var;
$varrec->value = $form->$config_var;
$DB->insert_record('course_config_fn', $varrec);
}
}
/// We need to have the sections created ahead of time for the weekly nav to work,
/// so check and create here.
if (!($sections = get_all_sections($form->id))) {
$sections = array();
}
for ($i = 0; $i <= $form->numsections; $i++) {
if (empty($sections[$i])) {
$section = new Object();
$section->course = $form->id; // Create a new section structure
$section->section = $i;
$section->summary = "";
$section->visible = 1;
if (!$section->id = $DB->insert_record("course_sections", $section)) {
$OUTPUT->notification("Error inserting new section!");
}
}
}
/// Check for a change to an FN format. If so, set some defaults as well...
if ($oldformat != 'FN') {
/// Set the news (announcements) forum to no force subscribe, and no posts or discussions.
require_once($CFG->dirroot . '/mod/forum/lib.php');
$news = forum_get_course_forum($form->id, 'news');
$news->open = 0;
$news->forcesubscribe = 0;
$DB->update_record('forum', $news);
}
rebuild_course_cache($form->id);
}
/* get the generic
* course object and
* them to course object
*
*/
function FN_get_course(&$course, $resubmission=false) {
global $DB;
/// Add course specific variable to the passed in parameter.
if ($config_vars = $DB->get_records('course_config_fn', array('courseid' => $course->id))) {
foreach ($config_vars as $config_var) {
$course->{$config_var->variable} = $config_var->value;
}
}
}
/* get the get wwek info
* course object and
* them to course object
*
*/
function get_week_info($tabrange, $week, $resubmission=false) {
global $SESSION;
$fnmaxtab = $DB->get_field('course_config_fn', 'value', array('courseid' => $this->course->id, 'variable' => 'maxtabs'));
if ($fnmaxtab) {
$maximumtabs = $fnmaxtab;
} else {
$maximumtabs = 12;
}
if ($this->course->numsections == $maximumtabs) {
$tablow = 1;
$tabhigh = $maximumtabs;
} else if ($tabrange > 1000) {
$tablow = $tabrange / 1000;
$tabhigh = $tablow + $maximumtabs - 1;
} else if (($tabrange == 0) && ($week == 0)) {
$tablow = ((int) ((int) ($this->course->numsections - 1) / (int) $maximumtabs) * $maximumtabs) + 1;
$tabhigh = $tablow + $maximumtabs - 1;
} else if ($tabrange == 0) {
$tablow = ((int) ((int) $week / (int) $maximumtabs) * $maximumtabs) + 1;
$tabhigh = $tablow + $maximumtabs - 1;
} else {
$tablow = 1;
$tabhigh = $maximumtabs;
}
$tabhigh = MIN($tabhigh, $this->course->numsections);
/// Normalize the tabs to always display FNMAXTABS...
if (($tabhigh - $tablow + 1) < $maximumtabs) {
$tablow = $tabhigh - $maximumtabs + 1;
}
/// Save the low and high week in SESSION variables... If they already exist, and the selected
/// week is in their range, leave them as is.
if (($tabrange >= 1000) || !isset($SESSION->FN_tablow[$this->course->id]) || !isset($SESSION->FN_tabhigh[$this->course->id]) ||
($week < $SESSION->FN_tablow[$this->course->id]) || ($week > $SESSION->FN_tabhigh[$this->course->id])) {
$SESSION->FN_tablow[$this->course->id] = $tablow;
$SESSION->FN_tabhigh[$this->course->id] = $tabhigh;
} else {
$tablow = $SESSION->FN_tablow[$this->course->id];
$tabhigh = $SESSION->FN_tabhigh[$this->course->id];
}
$tablow = MAX($tablow, 1);
$tabhigh = MIN($tabhigh, $this->course->numsections);
/// If selected week in a different set of tabs, move it to the current set...
if (($week != 0) && ($week < $tablow)) {
$week = $SESSION->G8_selected_week[$this->course->id] = $tablow;
} else if ($week > $tabhigh) {
$week = $SESSION->G8_selected_week[$this->course->id] = $tabhigh;
}
return array($tablow, $tabhigh, $week);
}
function get_course_section_mods($courseid, $sectionid, $resubmission=false) {
global $DB;
if (empty($courseid)) {
return false; // avoid warnings
}
if (empty($sectionid)) {
return false; // avoid warnings
}
return $DB->get_records_sql("SELECT cm.*, m.name as modname
FROM {modules} m, {course_modules} cm
WHERE cm.course = ? AND cm.section= ? AND cm.completion !=0 AND cm.module = m.id AND m.visible = 1", array($courseid, $sectionid)); // no disabled mods
}
/**
* To get the assignment object from instance
*
* @param instance of the assignment
* @return assignment object from assignment table
* @todo Finish documenting this function
*/
function get_assignment_object_from_instance($module, $resubmission=false) {
global $DB;
if (!($assignment = $DB->get_record('assignment', array('id' => $module->instance)))) {
return false; // Doesn't exist... wtf?
} else {
return $assignment;
}
}
/**
* To get the assignment object and user submission
*
* @param module of the assignment
* @return assignment object from assignment table
* @todo Finish documenting this function
*/
function is_saved_or_submitted($mod, $userid, $resubmission=false) {
global $CFG, $DB, $USER, $SESSION;
require_once ($CFG->dirroot . '/mod/assignment/lib.php');
if(isset($SESSION->completioncache)){
unset($SESSION->completioncache);
}
if ($mod->modname == 'assignment') {
if (!($assignment = $DB->get_record('assignment', array('id' => $mod->instance)))) {
return false; // Doesn't exist... wtf?
}
require_once ($CFG->dirroot.'/mod/assignment/type/'.$assignment->assignmenttype.'/assignment.class.php');
$assignmentclass = "assignment_$assignment->assignmenttype";
$assignmentinstance = new $assignmentclass($mod->id, $assignment, $mod);
if (!($submission = $assignmentinstance->get_submission($userid)) || empty($submission->timemodified)) {
return false;
}
switch ($assignment->assignmenttype) {
case "upload":
if($assignment->var4){ //if var4 enable then assignment can be saved
if(!empty($submission->timemodified)
&& (empty($submission->data2))
&& (empty($submission->timemarked))){
return 'saved';
}
else if(!empty($submission->timemodified)
&& ($submission->data2='submitted')
&& empty($submission->timemarked)){
return 'submitted';
}
else if(!empty($submission->timemodified)
&& ($submission->data2='submitted')
&& ($submission->grade==-1)){
return 'submitted';
}
}
else if(empty($submission->timemarked)){
return 'submitted';
}
break;
case "uploadsingle":
if(empty($submission->timemarked)){
return 'submitted';
}
break;
case "online":
if(empty($submission->timemarked)){
return 'submitted';
}
break;
case "offline":
if(empty($submission->timemarked)){
return 'submitted';
}
break;
}
} else if ($mod->modname == 'assign') {
if (!($assignment = $DB->get_record('assign', array('id' => $mod->instance)))) {
return false; // Doesn't exist
}
if ($resubmission){
if (!$submission = $DB->get_records('assign_submission', array('assignment'=>$assignment->id, 'userid'=>$USER->id), 'submissionnum DESC', '*', 0, 1)) {
return false;
}else{
$submission = reset($submission);
}
}else{
if (!$submission = $DB->get_record('assign_submission', array('assignment'=>$assignment->id, 'userid'=>$USER->id))) {
return false;
}
}
if ($resubmission){
if ($submissionisgraded = $DB->get_records('assign_grades', array('assignment'=>$assignment->id, 'userid'=>$USER->id, 'submissionnum' => $submission->submissionnum), 'submissionnum DESC', '*', 0, 1)) {
$submissionisgraded = reset($submissionisgraded);
if ($submissionisgraded->grade > -1){
if ($submission->timemodified > $submissionisgraded->timemodified) {
$graded = false;
}else{
$graded = true;
}
}else{
$graded = false;
}
}else{
$graded = false;
}
}else{
if (!$submissionisgraded = $DB->get_record('assign_grades', array('assignment'=>$assignment->id, 'userid'=>$USER->id))) {
$graded = false;
}else if ($submissionisgraded->grade <> -1){
if ($submission->timemodified > $submissionisgraded->timemodified) {
$graded = false;
}else{
$graded = true;
}
}else{
$graded = false;
}
}
if ($submission->status == 'draft') {
if($graded){
return 'submitted';
}else{
return 'saved';
}
}
if ($submission->status == 'resub') {
if($graded){
return 'submitted';
}else{
return 'waitinggrade';
}
}
if ($submission->status == 'submitted') {
if($graded){
return 'submitted';
}else{
return 'waitinggrade';
}
}
} else {
return ;
}
}
/**
* To Know status of the activity
*
* @param mod object
* @param userid
* @return saved or submitted
* @todo Finish documenting this function
*/
function get_activities_status($course, $section, $resubmission=false) {
global $CFG, $USER;
require_once($CFG->libdir . '/completionlib.php');
require_once($CFG->dirroot . '/course/lib.php');
$complete = 0;
$incomplete = 0;
$saved = 0;
$notattempted = 0;
$waitingforgrade = 0;
if ($section->visible) {
$modules = get_course_section_mods($course->id, $section->id);
$completion = new completion_info($course);
if ((isset($CFG->enablecompletion)) && !empty($completion)) {
foreach ($modules as $module) {
if (!$module->visible) {
continue;
}
if ($completion->is_enabled($course = null, $module)) {
$data = $completion->get_data($module, false, $USER->id, null);
$completionstate = $data->completionstate;
//grab assignment status
$assignement_status = is_saved_or_submitted($module, $USER->id, $resubmission);
if ($completionstate == 0) { // if completion=0 then it may be saved or submitted
if (($module->module == '1')
&& ($module->modname == 'assignment' || $module->modname == 'assign')
&& ($module->completion == '2')
&& $assignement_status) {
if (isset($assignement_status)) {
if ($assignement_status == 'saved') {
$saved++;
} else if ($assignement_status == 'submitted') {
$notattempted++;
} else if ($assignement_status == 'waitinggrade') {
$waitingforgrade++;
}
}else{
$notattempted++;
}
} else {
$notattempted++;
}
} elseif ($completionstate == 1 || $completionstate == 2) {
if (($module->module == 1)
&& ($module->modname == 'assignment' || $module->modname == 'assign')
&& ($module->completion == 2)
&& $assignement_status) {
if (isset($assignement_status)) {
if ($assignement_status == 'saved') {
$saved++;
} else if ($assignement_status == 'submitted') {
$complete++;
} else if ($assignement_status == 'waitinggrade') {
$waitingforgrade++;
}
}else{
$complete++;
}
} else {
$complete++;
}
} elseif ($completionstate == 3) {
if (($module->module == 1)
&& ($module->modname == 'assignment' || $module->modname == 'assign')
&& ($module->completion == 2)
&& $assignement_status) {
if (isset($assignement_status)) {
if ($assignement_status == 'saved') {
$saved++;
} else if ($assignement_status == 'submitted') {
$incomplete++;
} else if ($assignement_status == 'waitinggrade') {
$waitingforgrade++;
}
}else{
$incomplete++;
}
} else {
$incomplete++;
}
}
}
}
$array["complete"] = "$complete";
$array["incomplete"] = "$incomplete";
$array["saved"] = "$saved";
$array["notattempted"] = "$notattempted";
$array["waitngforgrade"] = "$waitingforgrade";
return $array;
}
}
}