-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlib.php
559 lines (474 loc) · 16.4 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
554
555
556
557
558
559
<?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/>.
/**
* Library of functions and constants for module flashcard
* @package mod_flashcard
* @category mod
* @author Gustav Delius
* @contributors Valery Fremaux
*/
defined('MOODLE_INTERNAL') || die();
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.
*/
function flashcard_add_instance($flashcard) {
global $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);
}
// weird hack
// Quickform fails getting thios value in $data.
$flashcard->completionallviewed = clean_param(@$_POST['completionallviewed'], PARAM_INT);
$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.
*/
function flashcard_update_instance($flashcard) {
global $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);
}
// weird hack
// Quickform fails getting thios value in $data.
$flashcard->completionallviewed = clean_param(@$_POST['completionallviewed'], PARAM_INT);
$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.
*/
function flashcard_delete_instance($id) {
global $DB;
if (!$flashcard = $DB->get_record('flashcard', array('id' => $id))) {
return false;
}
if (!$cm = get_coursemodule_from_instance('flashcard', $flashcard->id)) {
return false;
}
$context = context_module::instance($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) {
global $DB;
$params = array('userid' => $user->id, 'flashcardid' => $flashcard->id);
if ($lastaccess = $DB->get_field('flashcard_card', 'MAX(lastaccessed)', $params)) {
$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.
* @param object $course
* @param object $user User object
* @param object $mod the course module object
* @param object $flashcard the flaschard instance
*/
function flashcard_user_complete($course, $user, $mod, $flashcard) {
global $DB;
$cardsdeck = array();
$deckaccesscount = array();
$params = array('userid' => $user->id, 'flashcardid' => $flashcard->id);
if ($usercards = $DB->get_records('flashcard_card', $params)) {
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;
}
/**
* Checks if scale is being used by any instance of assignment
*
* This is used to find out if scale used anywhere
* @param $scaleid int
* @return boolean True if the scale is used by any assignment
*/
function flashcard_scale_used_anywhere($scaleid) {
return false;
}
/**
* 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.
* @param object $course
* @param bool $isteacher
* @param int $timestart
* @uses $CFG
*/
function flashcard_print_recent_activity($course, $isteacher, $timestart) {
return false; // True if anything was printed, otherwise false.
}
/**
* 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;
$sql = "
SELECT DISTINCT
userid,
userid
FROM
{flashcard_card}
WHERE
flashcardid = ?
";
$userids = $DB->get_records_sql_menu($sql, array('flashcardid' => $flashcardid));
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 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;
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 $DB;
require_login($course);
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
$allfileareas = array('intro',
'questionsoundfile',
'questionimagefile',
'questionvideofile',
'answersoundfile',
'answerimagefile',
'answervideofile',
'customfront',
'customempty',
'customback',
'customreview',
'customreviewed',
'customreviewempty');
if (!in_array($filearea, $allfileareas)) {
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 $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);
}
} else if ($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 $DB;
$componentstr = get_string('modulenameplural', 'flashcard');
$status = array();
$allflashcardsql = "
SELECT
f.id
FROM
{flashcard} f
WHERE
f.course = ?
";
// Remove all grades from gradebook.
// 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);
}
/**
* This function allows the tool_dbcleaner to register integrity checks
*/
function flashcard_dbcleaner_add_keys() {
global $DB;
$flashcardmoduleid = $DB->get_field('modules', 'id', array('name' => 'flashcard'));
$keys = array(
array('flashcard', 'course', 'course', 'id', ''),
array('flashcard', 'id', 'course_modules', 'instance', ' module = '.$flashcardmoduleid.' '),
array('flashcard_card', 'flashcardid', 'flashcard', 'id', ''),
array('flashcard_card', 'userid', 'user', 'id', ''),
array('flashcard_deckdata', 'flashcardid', 'flashcard', 'id', ''),
array('flashcard_userdeck_state', 'flashcardid', 'flashcard', 'id', ''),
array('flashcard_userdeck_state', 'userid', 'user', 'id', ''),
);
return $keys;
}