forked from vfremaux/moodle-mod_flashcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
553 lines (458 loc) · 17.3 KB
/
lib.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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
<?php
/**
* Library of functions and constants for module flashcard
* @package mod-flashcard
* @category mod
* @author Gustav Delius
* @contributors Valery Fremaux
* @version Moodle 2.0
*/
/**
* Includes and requires
*/
require_once($CFG->dirroot . '/lib/ddllib.php');
require_once($CFG->dirroot . '/mod/flashcard/locallib.php');
require_once($CFG->dirroot . '/mod/flashcard/mailtemplatelib.php');
/**
* Indicates API features that the forum supports.
*
* @uses FEATURE_GROUPS
* @uses FEATURE_GROUPINGS
* @uses FEATURE_GROUPMEMBERSONLY
* @uses FEATURE_MOD_INTRO
* @uses FEATURE_COMPLETION_TRACKS_VIEWS
* @uses FEATURE_COMPLETION_HAS_RULES
* @uses FEATURE_GRADE_HAS_GRADE
* @uses FEATURE_GRADE_OUTCOMES
* @param string $feature
* @return mixed True if yes (some features may use other values)
*/
function flashcard_supports($feature) {
switch($feature) {
case FEATURE_GROUPS: return true;
case FEATURE_GROUPINGS: return false;
case FEATURE_GROUPMEMBERSONLY: return false;
case FEATURE_MOD_INTRO: return true;
case FEATURE_COMPLETION_TRACKS_VIEWS: return true;
case FEATURE_COMPLETION_HAS_RULES: return true;
case FEATURE_GRADE_HAS_GRADE: return false;
case FEATURE_GRADE_OUTCOMES: return false;
case FEATURE_RATE: return false;
case FEATURE_BACKUP_MOODLE2: return true;
case FEATURE_SHOW_DESCRIPTION: return true;
default: return null;
}
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will create a new instance and return the id number
* of the new instance.
* @uses $COURSE, $DB
*/
function flashcard_add_instance($flashcard) {
global $COURSE, $DB;
$flashcard->timemodified = time();
if (!isset($flashcard->starttimeenable)) {
$flashcard->starttime = 0;
}
if (!isset($flashcard->endtimeenable)) {
$flashcard->endtime = 0;
}
// saves draft customization image files into definitive filearea
$customimages = array('custombackfileid', 'customfrontfileid', 'customemptyfileid', 'customreviewfileid', 'customreviewedfileid', 'customreviewemptyfileid');
foreach($customimages as $ci){
flashcard_save_draft_customimage($flashcard, $ci);
}
$newid = $DB->insert_record('flashcard', $flashcard);
// Import all information from question
if (isset($flashcard->forcereload) && $flashcard->forcereload) {
flashcard_import($flashcard);
}
return $newid;
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will update an existing instance with new data.
* @uses $COURSE, $DB
*
*/
function flashcard_update_instance($flashcard) {
global $COURSE, $DB;
$flashcard->timemodified = time();
$flashcard->id = $flashcard->instance;
// update first deck with questions that might be added
if (isset($flashcard->forcereload) && $flashcard->forcereload) {
flashcard_import($flashcard);
}
if (!isset($flashcard->starttimeenable)) {
$flashcard->starttime = 0;
}
if (!isset($flashcard->endtimeenable)) {
$flashcard->endtime = 0;
}
// saves draft customization image files into definitive filearea
$customimages = array('custombackfileid', 'customfrontfileid', 'customemptyfileid', 'customreviewfileid', 'customreviewedfileid', 'customreviewemptyfileid');
foreach($customimages as $ci){
flashcard_save_draft_customimage($flashcard, $ci);
}
$return = $DB->update_record('flashcard', $flashcard);
return $return;
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
* @uses $COURSE, $DB
*/
function flashcard_delete_instance($id) {
global $COURSE, $DB;
if (!$flashcard = $DB->get_record('flashcard', array('id' => $id))) {
return false;
}
if (!$cm = get_coursemodule_from_instance('flashcard', $flashcard->id)) {
return false;
}
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
$result = true;
// Delete any dependent records here
$DB->delete_records('flashcard_deckdata', array('flashcardid' => $flashcard->id));
$DB->delete_records('flashcard_card', array('flashcardid' => $flashcard->id));
// now get rid of all files
$fs = get_file_storage();
$fs->delete_area_files($context->id);
if (!$DB->delete_records('flashcard', array('id' => $flashcard->id))) {
$result = false;
}
return $result;
}
/**
* Return a small object with summary information about what a
* user has done with a given particular instance of this module
* Used for user activity reports.
* $return->time = the time they did it
* $return->info = a short text description
*/
function flashcard_user_outline($course, $user, $mod, $flashcard) {
if ($lastaccess = $DB->get_field('flashcard_card', 'MAX(lastaccessed)', array('userid' => $user->id, 'flashcardid' => $flashcard->id))){
$return->time = $lastaccess;
$return->info = get_string('lastaccessed', 'flashcard');
return $return;
}
return false;
}
/**
* Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports.
*/
function flashcard_user_complete($course, $user, $mod, $flashcard) {
global $DB;
$cardsdeck = array();
$deckaccesscount = array();
if ($usercards = $DB->get_records('flashcard_card', array('userid' => $user->id, 'flashcardid' => $flashcard->id))){
foreach($usercards as $uc){
@$cardsdeck[$uc->deck]++;
$deckaccesscount[$uc->deck] = 0 + @$deckaccesscount[$uc->deck] + $uc->accesscount;
}
}
asort($cardsdeck);
foreach($cardsdeck as $deckid => $counter){
$a = new StdClass();
$a->count = $counter;
$a->deck = $deckid;
$a->cardcount = $deckaccesscount[$deckid];
echo get_string('userdecksummary', 'flashcard', $a);
echo '<br/>';
}
return true;
}
/**
* Given a course and a time, this module should find recent activity
* that has occurred in flashcard activities and print it out.
* Return true if there was output, or false is there was none.
* @uses $CFG
*/
function flashcard_print_recent_activity($course, $isteacher, $timestart) {
global $CFG;
return false; // True if anything was printed, otherwise false
}
/**
* Function to be run periodically according to the moodle cron
* This function searches for things that need to be done, such
* as sending out mail, toggling flags etc ...
* @uses $CFG
*
*/
function flashcard_cron() {
global $CFG, $DB, $SITE;
// get all flashcards
$flashcards = $DB->get_records('flashcard');
foreach ($flashcards as $flashcard) {
if ($flashcard->starttime != 0 && time() < $flashcard->starttime) continue;
if ($flashcard->endtime != 0 && time() > $flashcard->endtime) continue;
if ($flashcard->autodowngrade) {
$cards = $DB->get_records_select('flashcard_card', 'flashcardid = ? AND deck > 1', array($flashcard->id));
foreach ($cards as $card) {
// downgrades to deck 3 (middle low)
if ($flashcard->decks > 3) {
if ($card->deck == 4 && time() > $card->lastaccessed + ($flashcard->deck4_delay * HOURSECS + $flashcard->deck4_release * HOURSECS)) {
$DB->set_field('flashcard_card', 'deck', 3, array('id' => $card->id));
}
}
// downgrades to deck 2 (middle)
if ($flashcard->decks > 2) {
if ($card->deck == 3 && time() > $card->lastaccessed + ($flashcard->deck3_delay * HOURSECS + $flashcard->deck3_release * HOURSECS)) {
$DB->set_field('flashcard_card', 'deck', 2, array('id' => $card->id));
}
}
// downgrades to deck 1 (difficult)
if ($card->deck == 2 && time() > $card->lastaccessed + ($flashcard->deck2_delay * HOURSECS + $flashcard->deck2_release * HOURSECS)) {
$DB->set_field('flashcard_card', 'deck', 1, array('id' => $card->id));
}
}
}
if ($flashcard->remindusers){
if ($users = flashcard_get_participants($flashcard->id)) { // restrict to real participants
$participants = count($users);
mtrace("Participants : $participants users ");
$voiduser = new StdClass();
$voiduser->email = $CFG->noreplyaddress;
$voiduser->firstname = '';
$voiduser->lastname = '';
$voiduser->id = 1;
$coursename = $DB->get_field('course', 'fullname', array('id' => $flashcard->course));
$notified = 0;
foreach($users as $u){
$decks = flashcard_get_deck_status($flashcard, $u->id);
foreach($decks->decks as $deck){
$sendnotif = 0;
if (@$deck->reactivate){
if ($state = $DB->get_record('flashcard_userdeck_state', array('userid' => $u->id, 'flashcardid' => $flashcard->id, 'deck' => $deck->deckid))){
if ($state->state){
continue;
}
} else {
$state = new StdClass();
$state->flashcardid = $flashcard->id;
$state->userid = $u->id;
$state->deck = $deck->deckid;
$DB->insert_record('flashcard_userdeck_state', $state);
}
$vars = array(
'FULLNAME' => fullname($u),
'COURSE' => format_string($coursename),
'URL' => $CFG->wwwroot.'/mod/flashcard/view.php?f='.$flashcard->id
);
$notification = flashcard_compile_mail_template('notifyreview', $vars, $u->lang);
$notification_html = flashcard_compile_mail_template('notifyreview_html', $vars, $u->lang);
if($CFG->debugsmtp) echo "Sending Review Notification Mail Notification to " . fullname($u) . '<br/>'.$notification_html;
email_to_user($u, $voiduser, get_string('flashcardneedsreview', 'flashcard', $SITE->shortname.':'.format_string($flashcard->name)), $notification, $notification_html);
// Mark it has been sent
$DB->set_field('flashcard_userdeck_state', 'state', 1, array('userid' => $u->id, 'flashcardid' => $flashcard->id, 'deck' => $deck->deckid));
$notified++;
}
}
}
mtrace("Notified : $notified users ");
}
}
}
return true;
}
/**
* Must return an array of grades for a given instance of this module,
* indexed by user. It also returns a maximum allowed grade.
*
* $return->grades = array of grades;
* $return->maxgrade = maximum allowed grade;
*
* return $return;
*/
function flashcard_grades($flashcardid) {
return NULL;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of flashcard. Must include every user involved
* in the instance, independent of his role (student, teacher, admin...)
* See other modules as example.
* @uses $DB
*/
function flashcard_get_participants($flashcardid) {
global $DB;
$userids = $DB->get_records_menu('flashcard_card', array('flashcardid' => $flashcardid), '', 'userid,id');
if ($userids) {
$users = $DB->get_records_list('user', 'id', array_keys($userids));
}
if (!empty($users)) return $users;
return false;
}
/**
* This function returns if a scale is being used by one flashcard
* it it has support for grading and scales. Commented code should be
* modified if necessary. See forum, glossary or journal modules
* as reference.
*/
function flashcard_scale_used($flashcardid, $scaleid) {
$return = false;
//$rec = get_record("flashcard","id","$flashcardid","scale","-$scaleid");
//
//if (!empty($rec) && !empty($scaleid)) {
// $return = true;
//}
return $return;
}
/**
* Serves the files included in flashcard. Implements needed access control ;-)
*
* There are several situations in general where the files will be sent.
* 1) filearea = 'questionsoundfile',
* 2) filearea = 'questionimagefile',
* 3) filearea = 'questionvideofile',
* 4) filearea = 'answersoundfile',
* 5) filearea = 'answerimagefile',
* 6) filearea = 'answervideofile'
*
* @param object $course
* @param object $cm
* @param object $context
* @param string $filearea
* @param array $args
* @param bool $forcedownload
* @return bool false if file not found, does not return if found - justsend the file
*/
function flashcard_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
global $CFG, $DB;
require_login($course);
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
if (!in_array($filearea, array('intro', 'questionsoundfile', 'questionimagefile', 'questionvideofile', 'answersoundfile', 'answerimagefile', 'answervideofile', 'customfront', 'customempty', 'customback', 'customreview', 'customreviewed', 'customreviewempty'))) {
return false;
}
$itemid = (int)array_shift($args);
$fs = get_file_storage();
if ($files = $fs->get_area_files($context->id, 'mod_flashcard', $filearea, $itemid, "sortorder, itemid, filepath, filename", false)){
$file = array_pop($files);
// finally send the file
send_stored_file($file, 0, 0, $forcedownload);
}
return false;
}
/**
* Obtains the automatic completion state for this flashcard
*
* @global object
* @global object
* @param object $course Course
* @param object $cm Course-module
* @param int $userid User ID
* @param bool $type Type of comparison (or/and; can be used as return value if no conditions)
* @return bool True if completed, false if not. (If no conditions, then return
* value depends on comparison type)
*/
function flashcard_get_completion_state($course, $cm, $userid, $type) {
global $CFG, $DB;
// Get flashcard details
if (!($flashcard = $DB->get_record('flashcard', array('id' => $cm->instance)))) {
throw new Exception("Can't find flashcard {$cm->instance}");
}
$result = $type; // Default return value
// completion condition 1 is have no cards in deck
// count all cards
$allcards = $DB->count_records('flashcard_deckdata', array('flashcardid' => $flashcard->id));
if ($flashcard->completionallgood) {
// match any card that are NOT in last deck
$sql = "
SELECT
COUNT(DISTINCT c.id)
FROM
{flashcard_card} c
WHERE
c.userid = ? AND
c.flashcardid = ? AND
c.deck = ?
";
$good = $DB->count_records_sql($sql, array($userid, $flashcard->id, $flashcard->decks));
if ($type == COMPLETION_AND) {
$result = $result && ($good == $allcards);
} else {
$result = $result || ($good == $allcards);
}
} elseif ($flashcard->completionallviewed) {
// allgood superseedes allviewed
// match distinct viewed cards
$sql = "
SELECT
COUNT(DISTINCT c.entryid)
FROM
{flashcard_card} c
WHERE
c.userid = ? AND
c.flashcardid = ?
";
$viewed = $DB->count_records_sql($sql, array($userid, $flashcard->id));
if ($type == COMPLETION_AND) {
$result = $result && ($viewed >= min($allcards, $flashcard->completionallviewed));
} else {
$result = $result || ($viewed >= min($allcards, $flashcard->completionallviewed));
}
}
// completion condition 2 is : all cards in last deck (easiest)
return $result;
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* This function will remove all posts from the specified forum
* and clean up any related data.
*
* @global object
* @global object
* @param $data the data submitted from the reset course.
* @return array status array
*/
function flashcard_reset_userdata($data) {
global $CFG, $DB;
$componentstr = get_string('modulenameplural', 'flashcard');
$status = array();
$allflashcardsql = "
SELECT
f.id
FROM
{flashcard} f
WHERE
f.course = ?
";
// remove all grades from gradebook
/*
// for future extensions
if (empty($data->reset_gradebook_grades)) {
flashcard_reset_gradebook($data->courseid);
}
*/
// remove all states and usr attempts unconditionally - even for users still enrolled in course
if (!empty($data->reset_flashcard_all)) {
$params = array($data->courseid);
$DB->delete_records_select('flashcard_card', " flashcardid IN ($allflashcardsql) ", $params);
$DB->delete_records_select('flashcard_userdeck_state', " flashcardid IN ($allflashcardsql) ", $params);
$status[] = array('component' => $componentstr, 'item' => get_string('resetflashcardstates','flashcard'), 'error' => false);
}
return $status;
}
/**
* Called by course/reset.php
*
* @param $mform form passed by reference
*/
function flashcard_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'flashcardheader', get_string('modulenameplural', 'flashcard'));
$mform->addElement('checkbox', 'reset_flashcard_all', get_string('resetflashcardstates','flashcard'));
}
/**
* Course reset form defaults.
* @return array
*/
function flashcard_reset_course_form_defaults($course) {
return array('reset_flashcard_all' => 1);
}