forked from ndunand/moodle-mod_choicegroup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
897 lines (791 loc) · 32.2 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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
<?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/>.
/**
* Version information
*
* @package mod
* @subpackage choicegroup
* @copyright 2013 Université de Lausanne
* @author Nicolas Dunand <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/** @global int $CHOICEGROUP_COLUMN_HEIGHT */
global $CHOICEGROUP_COLUMN_HEIGHT;
$CHOICEGROUP_COLUMN_HEIGHT = 300;
/** @global int $CHOICEGROUP_COLUMN_WIDTH */
global $CHOICEGROUP_COLUMN_WIDTH;
$CHOICEGROUP_COLUMN_WIDTH = 300;
define('CHOICEGROUP_PUBLISH_ANONYMOUS', '0');
define('CHOICEGROUP_PUBLISH_NAMES', '1');
define('CHOICEGROUP_PUBLISH_DEFAULT', '1');
define('CHOICEGROUP_SHOWRESULTS_NOT', '0');
define('CHOICEGROUP_SHOWRESULTS_AFTER_ANSWER', '1');
define('CHOICEGROUP_SHOWRESULTS_AFTER_CLOSE', '2');
define('CHOICEGROUP_SHOWRESULTS_ALWAYS', '3');
define('CHOICEGROUP_SHOWRESULTS_DEFAULT', '3');
define('CHOICEGROUP_DISPLAY_HORIZONTAL', '0');
define('CHOICEGROUP_DISPLAY_VERTICAL', '1');
/** @global array $CHOICEGROUP_PUBLISH */
global $CHOICEGROUP_PUBLISH;
$CHOICEGROUP_PUBLISH = array (CHOICEGROUP_PUBLISH_ANONYMOUS => get_string('publishanonymous', 'choicegroup'),
CHOICEGROUP_PUBLISH_NAMES => get_string('publishnames', 'choicegroup'));
/** @global array $CHOICEGROUP_SHOWRESULTS */
global $CHOICEGROUP_SHOWRESULTS;
$CHOICEGROUP_SHOWRESULTS = array (CHOICEGROUP_SHOWRESULTS_NOT => get_string('publishnot', 'choicegroup'),
CHOICEGROUP_SHOWRESULTS_AFTER_ANSWER => get_string('publishafteranswer', 'choicegroup'),
CHOICEGROUP_SHOWRESULTS_AFTER_CLOSE => get_string('publishafterclose', 'choicegroup'),
CHOICEGROUP_SHOWRESULTS_ALWAYS => get_string('publishalways', 'choicegroup'));
/** @global array $CHOICEGROUP_DISPLAY */
global $CHOICEGROUP_DISPLAY;
$CHOICEGROUP_DISPLAY = array (CHOICEGROUP_DISPLAY_HORIZONTAL => get_string('displayhorizontal', 'choicegroup'),
CHOICEGROUP_DISPLAY_VERTICAL => get_string('displayvertical','choicegroup'));
require_once($CFG->dirroot.'/group/lib.php');
/// Standard functions /////////////////////////////////////////////////////////
/**
* @global object
* @param object $course
* @param object $user
* @param object $mod
* @param object $choicegroup
* @return object|null
*/
function choicegroup_user_outline($course, $user, $mod, $choicegroup) {
if ($groupmembership = choicegroup_get_user_answer($choicegroup, $user)) { // if user has answered
$result = new stdClass();
$result->info = "'".format_string($groupmembership->name)."'";
$result->time = $groupmembership->timeuseradded;
return $result;
}
return NULL;
}
/**
*
*/
function choicegroup_get_user_answer($choicegroup, $user, $returnArray = FALSE) {
global $DB;
if (is_numeric($user)) {
$userid = $user;
}
else {
$userid = $user->id;
}
$groups = choicegroup_get_groups($choicegroup);
$groupids = array();
foreach ($groups as $group) {
if (is_numeric($group->id)) {
$groupids[] = $group->id;
}
}
if ($groupids) {
$params1 = array($userid);
list($insql, $params2) = $DB->get_in_or_equal($groupids);
$params = array_merge($params1, $params2);
$groupmemberships = $DB->get_records_sql('SELECT * FROM {groups_members} WHERE userid = ? AND groupid '.$insql, $params);
$groups = array();
foreach ($groupmemberships as $groupmembership) {
$group = $DB->get_record('groups', array('id' => $groupmembership->groupid));
$group->timeuseradded = $groupmembership->timeadded;
$groups[] = $group;
}
if (count($groups) > 0) {
if ($returnArray === TRUE) {
return $groups;
} else {
return $groups[0];
}
}
}
return false;
}
/**
* @global object
* @param object $course
* @param object $user
* @param object $mod
* @param object $choicegroup
* @return string|void
*/
function choicegroup_user_complete($course, $user, $mod, $choicegroup) {
if ($groupmembership = choicegroup_get_user_answer($choicegroup, $user)) { // if user has answered
$result = new stdClass();
$result->info = "'".format_string($groupmembership->name)."'";
$result->time = $groupmembership->timeuseradded;
echo get_string("answered", "choicegroup").": $result->info. ".get_string("updated", '', userdate($result->time));
} else {
print_string("notanswered", "choicegroup");
}
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod_form.php) this function
* will create a new instance and return the id number
* of the new instance.
*
* @global object
* @param object $choicegroup
* @return int
*/
function choicegroup_add_instance($choicegroup) {
global $DB;
$choicegroup->timemodified = time();
if (empty($choicegroup->timerestrict)) {
$choicegroup->timeopen = 0;
$choicegroup->timeclose = 0;
}
//insert answers
$choicegroup->id = $DB->insert_record("choicegroup", $choicegroup);
foreach ($choicegroup->option as $key => $value) {
$value = trim($value);
if (isset($value) && $value <> '') {
$option = new stdClass();
$option->groupid = $value;
$option->choicegroupid = $choicegroup->id;
if (isset($choicegroup->limit[$key])) {
$option->maxanswers = $choicegroup->limit[$key];
}
$option->timemodified = time();
$DB->insert_record("choicegroup_options", $option);
}
}
return $choicegroup->id;
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod_form.php) this function
* will update an existing instance with new data.
*
* @global object
* @param object $choicegroup
* @return bool
*/
function choicegroup_update_instance($choicegroup) {
global $DB;
$choicegroup->id = $choicegroup->instance;
$choicegroup->timemodified = time();
if (empty($choicegroup->timerestrict)) {
$choicegroup->timeopen = 0;
$choicegroup->timeclose = 0;
}
if (empty($choicegroup->multipleenrollmentspossible)) {
$choicegroup->multipleenrollmentspossible = 0;
}
//update, delete or insert answers
foreach ($choicegroup->option as $key => $value) {
$value = trim($value);
$option = new stdClass();
$option->groupid = $value;
$option->choicegroupid = $choicegroup->id;
if (isset($choicegroup->limit[$key])) {
$option->maxanswers = $choicegroup->limit[$key];
}
$option->timemodified = time();
if (isset($choicegroup->optionid[$key]) && !empty($choicegroup->optionid[$key])){//existing choicegroup record
$option->id=$choicegroup->optionid[$key];
if (isset($value) && $value <> '') {
$DB->update_record("choicegroup_options", $option);
} else { //empty old option - needs to be deleted.
$DB->delete_records("choicegroup_options", array("id"=>$option->id));
}
} else {
if (isset($value) && $value <> '') {
$DB->insert_record("choicegroup_options", $option);
}
}
}
return $DB->update_record('choicegroup', $choicegroup);
}
/**
* @global object
* @param object $choicegroup
* @param object $user
* @param object $coursemodule
* @param array $allresponses
* @return array
*/
function choicegroup_prepare_options($choicegroup, $user, $coursemodule, $allresponses) {
$cdisplay = array('options'=>array());
$cdisplay['limitanswers'] = true;
$context = context_module::instance($coursemodule->id);
$answers = choicegroup_get_user_answer($choicegroup, $user, TRUE);
foreach ($choicegroup->option as $optionid => $text) {
if (isset($text)) { //make sure there are no dud entries in the db with blank text values.
$option = new stdClass;
$option->attributes = new stdClass;
$option->attributes->value = $optionid;
$option->groupid = $text;
$option->maxanswers = $choicegroup->maxanswers[$optionid];
$option->displaylayout = $choicegroup->display;
if (isset($allresponses[$text])) {
$option->countanswers = count($allresponses[$text]);
} else {
$option->countanswers = 0;
}
if (is_array($answers)) {
foreach($answers as $answer) {
if ($answer && $text == $answer->id) {
$option->attributes->checked = true;
}
}
}
if ( $choicegroup->limitanswers && ($option->countanswers >= $option->maxanswers) && empty($option->attributes->checked)) {
$option->attributes->disabled = true;
}
$cdisplay['options'][] = $option;
}
}
$cdisplay['hascapability'] = is_enrolled($context, NULL, 'mod/choicegroup:choose'); //only enrolled users are allowed to make a choicegroup
if ($choicegroup->allowupdate && is_array($answers)) {
$cdisplay['allowupdate'] = true;
}
return $cdisplay;
}
/**
* @global object
* @param int $formanswer
* @param object $choicegroup
* @param int $userid
* @param object $course Course object
* @param object $cm
*/
function choicegroup_user_submit_response($formanswer, $choicegroup, $userid, $course, $cm) {
global $DB, $CFG;
require_once($CFG->libdir.'/completionlib.php');
$selected_option = $DB->get_record('choicegroup_options', array('id' => $formanswer));
$current = choicegroup_get_user_answer($choicegroup, $userid);
if ($current) {
$currentgroup = $DB->get_record('groups', array('id' => $current->id), 'id,name', MUST_EXIST);
}
$selectedgroup = $DB->get_record('groups', array('id' => $selected_option->groupid), 'id,name', MUST_EXIST);
$context = context_module::instance($cm->id);
$countanswers=0;
if($choicegroup->limitanswers) {
$groupmembers = $DB->get_records('groups_members', array('groupid' => $selected_option->groupid));
$countanswers = count($groupmembers);
$maxans = $choicegroup->maxanswers[$formanswer];
}
if (!($choicegroup->limitanswers && ($countanswers >= $maxans) )) {
groups_add_member($selected_option->groupid, $userid);
if ($current) {
if (!($choicegroup->multipleenrollmentspossible == 1)) {
if ($selected_option->groupid != $current->id) {
if (groups_is_member($current->id, $userid)) {
groups_remove_member($current->id, $userid);
add_to_log($course->id, "choicegroup", "remove choice", "view.php?id=$cm->id", $currentgroup->name, $cm->id);
}
}
}
add_to_log($course->id, "choicegroup", "choose again", "view.php?id=$cm->id", $selectedgroup->name, $cm->id);
} else {
// Update completion state
$completion = new completion_info($course);
if ($completion->is_enabled($cm) && $choicegroup->completionsubmit) {
$completion->update_state($cm, COMPLETION_COMPLETE);
}
add_to_log($course->id, "choicegroup", "choose", "view.php?id=$cm->id", $selectedgroup->name, $cm->id);
}
} else {
if (!$current || !($current->id==$selected_option->groupid)) { //check to see if current choicegroup already selected - if not display error
print_error('choicegroupfull', 'choicegroup', $CFG->wwwroot.'/mod/choicegroup/view.php?id='.$cm->id);
}
}
}
/**
* @param object $choicegroup
* @param array $allresponses
* @param object $cm
* @return void Output is echo'd
*/
function choicegroup_show_reportlink($choicegroup, $allresponses, $cm) {
$responsecount = 0;
$respondents = array();
foreach($allresponses as $optionid => $userlist) {
if ($optionid) {
$responsecount += count($userlist);
if ($choicegroup->multipleenrollmentspossible) {
foreach ($userlist as $user) {
if (!in_array($user->id, $respondents)) {
$respondents[] = $user->id;
}
}
}
}
}
echo '<div class="reportlink"><a href="report.php?id='.$cm->id.'">'.get_string("viewallresponses", "choicegroup", $responsecount);
if ($choicegroup->multipleenrollmentspossible == 1) {
echo ' ' . get_string("byparticipants", "choicegroup", count($respondents));
}
echo '</a></div>';
}
/**
* @global object
* @param object $choicegroup
* @param object $course
* @param object $coursemodule
* @param array $allresponses
* * @param bool $allresponses
* @return object
*/
function prepare_choicegroup_show_results($choicegroup, $course, $cm, $allresponses, $forcepublish=false) {
global $CFG, $FULLSCRIPT, $PAGE, $OUTPUT;
$display = clone($choicegroup);
$display->coursemoduleid = $cm->id;
$display->courseid = $course->id;
//debugging('<pre>'.print_r($choicegroup->option, true).'</pre>', DEBUG_DEVELOPER);
//debugging('<pre>'.print_r($allresponses, true).'</pre>', DEBUG_DEVELOPER);
//overwrite options value;
$display->options = array();
$totaluser = 0;
foreach ($choicegroup->option as $optionid => $groupid) {
$display->options[$optionid] = new stdClass;
$display->options[$optionid]->groupid = $groupid;
$display->options[$optionid]->maxanswer = $choicegroup->maxanswers[$optionid];
if (array_key_exists($groupid, $allresponses)) {
$display->options[$optionid]->user = $allresponses[$groupid];
$totaluser += count($allresponses[$groupid]);
}
}
if ($choicegroup->showunanswered) {
$display->options[0]->user = $allresponses[0];
}
unset($display->option);
unset($display->maxanswers);
$display->numberofuser = $totaluser;
$context = context_module::instance($cm->id);
$display->viewresponsecapability = has_capability('mod/choicegroup:readresponses', $context);
$display->deleterepsonsecapability = has_capability('mod/choicegroup:deleteresponses',$context);
$display->fullnamecapability = has_capability('moodle/site:viewfullnames', $context);
if (empty($allresponses)) {
echo $OUTPUT->heading(get_string("nousersyet"));
return false;
}
$totalresponsecount = 0;
foreach ($allresponses as $optionid => $userlist) {
if ($choicegroup->showunanswered || $optionid) {
$totalresponsecount += count($userlist);
}
}
$context = context_module::instance($cm->id);
$hascapfullnames = has_capability('moodle/site:viewfullnames', $context);
$viewresponses = has_capability('mod/choicegroup:readresponses', $context);
switch ($forcepublish) {
case CHOICEGROUP_PUBLISH_NAMES:
echo '<div id="tablecontainer">';
if ($viewresponses) {
echo '<form id="attemptsform" method="post" action="'.$FULLSCRIPT.'" onsubmit="var menu = document.getElementById(\'menuaction\'); return (menu.options[menu.selectedIndex].value == \'delete\' ? \''.addslashes_js(get_string('deleteattemptcheck','quiz')).'\' : true);">';
echo '<div>';
echo '<input type="hidden" name="id" value="'.$cm->id.'" />';
echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
echo '<input type="hidden" name="mode" value="overview" />';
}
echo "<table cellpadding=\"5\" cellspacing=\"10\" class=\"results names\">";
echo "<tr>";
$columncount = array(); // number of votes in each column
if ($choicegroup->showunanswered) {
$columncount[0] = 0;
echo "<th class=\"col0 header\" scope=\"col\">";
print_string('notanswered', 'choicegroup');
echo "</th>";
}
$count = 1;
foreach ($choicegroup->option as $optionid => $optiontext) {
$columncount[$optionid] = 0; // init counters
echo "<th class=\"col$count header\" scope=\"col\">";
echo format_string($optiontext);
echo "</th>";
$count++;
}
echo "</tr><tr>";
if ($choicegroup->showunanswered) {
echo "<td class=\"col$count data\" >";
// added empty row so that when the next iteration is empty,
// we do not get <table></table> error from w3c validator
// MDL-7861
echo "<table class=\"choicegroupresponse\"><tr><td></td></tr>";
if (!empty($allresponses[0])) {
foreach ($allresponses[0] as $user) {
echo "<tr>";
echo "<td class=\"picture\">";
echo $OUTPUT->user_picture($user, array('courseid'=>$course->id));
echo "</td><td class=\"fullname\">";
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&course=$course->id\">";
echo fullname($user, $hascapfullnames);
echo "</a>";
echo "</td></tr>";
}
}
echo "</table></td>";
}
$count = 1;
foreach ($choicegroup->option as $optionid => $optiontext) {
echo '<td class="col'.$count.' data" >';
// added empty row so that when the next iteration is empty,
// we do not get <table></table> error from w3c validator
// MDL-7861
echo '<table class="choicegroupresponse"><tr><td></td></tr>';
if (isset($allresponses[$optionid])) {
foreach ($allresponses[$optionid] as $user) {
$columncount[$optionid] += 1;
echo '<tr><td class="attemptcell">';
if ($viewresponses and has_capability('mod/choicegroup:deleteresponses',$context)) {
echo '<input type="checkbox" name="userid[]" value="'. $user->id. '" />';
}
echo '</td><td class="picture">';
echo $OUTPUT->user_picture($user, array('courseid'=>$course->id));
echo '</td><td class="fullname">';
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&course=$course->id\">";
echo fullname($user, $hascapfullnames);
echo '</a>';
echo '</td></tr>';
}
}
$count++;
echo '</table></td>';
}
echo "</tr><tr>";
$count = 1;
if ($choicegroup->showunanswered) {
echo "<td></td>";
}
foreach ($choicegroup->option as $optionid => $optiontext) {
echo "<td align=\"center\" class=\"col$count count\">";
if ($choicegroup->limitanswers) {
echo get_string("taken", "choicegroup").":";
echo $columncount[$optionid];
echo "<br/>";
echo get_string("limit", "choicegroup").":";
echo $choicegroup->maxanswers[$optionid];
} else {
if (isset($columncount[$optionid])) {
echo $columncount[$optionid];
}
}
echo "</td>";
$count++;
}
echo "</tr>";
/// Print "Select all" etc.
if ($viewresponses and has_capability('mod/choicegroup:deleteresponses',$context)) {
echo '<tr><td></td><td>';
echo '<a href="javascript:select_all_in(\'DIV\',null,\'tablecontainer\');">'.get_string('selectall').'</a> / ';
echo '<a href="javascript:deselect_all_in(\'DIV\',null,\'tablecontainer\');">'.get_string('deselectall').'</a> ';
echo ' ';
echo html_writer::label(get_string('withselected', 'choicegroup'), 'menuaction');
echo html_writer::select(array('delete' => get_string('delete')), 'action', '', array(''=>get_string('withselectedusers')), array('id'=>'menuaction'));
$PAGE->requires->js_init_call('M.util.init_select_autosubmit', array('attemptsform', 'menuaction', ''));
echo '<noscript id="noscriptmenuaction" style="display:inline">';
echo '<div>';
echo '<input type="submit" value="'.get_string('go').'" /></div></noscript>';
echo '</td><td></td></tr>';
}
echo "</table></div>";
if ($viewresponses) {
echo "</form></div>";
}
break;
}
return $display;
}
/**
* @global object
* @param array $userids
* @param object $choicegroup Choice main table row
* @param object $cm Course-module object
* @param object $course Course object
* @return bool
*/
function choicegroup_delete_responses($userids, $choicegroup, $cm, $course) {
global $CFG, $DB;
require_once($CFG->libdir.'/completionlib.php');
if(!is_array($userids) || empty($userids)) {
return false;
}
foreach($userids as $num => $userid) {
if(empty($userid)) {
unset($userids[$num]);
}
}
$completion = new completion_info($course);
foreach($userids as $userid) {
if ($current = choicegroup_get_user_answer($choicegroup, $userid)) {
$currentgroup = $DB->get_record('groups', array('id' => $current->id), 'id,name', MUST_EXIST);
if (groups_is_member($current->id, $userid)) {
groups_remove_member($current->id, $userid);
add_to_log($course->id, "choicegroup", "remove choice", "view.php?id=$cm->id", $currentgroup->name, $cm->id);
}
// Update completion state
if ($completion->is_enabled($cm) && $choicegroup->completionsubmit) {
$completion->update_state($cm, COMPLETION_INCOMPLETE, $userid);
}
}
}
return true;
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
*
* @global object
* @param int $id
* @return bool
*/
function choicegroup_delete_instance($id) {
global $DB;
if (! $choicegroup = $DB->get_record("choicegroup", array("id"=>"$id"))) {
return false;
}
$result = true;
if (! $DB->delete_records("choicegroup_options", array("choicegroupid"=>"$choicegroup->id"))) {
$result = false;
}
if (! $DB->delete_records("choicegroup", array("id"=>"$choicegroup->id"))) {
$result = false;
}
return $result;
}
/**
* Returns text string which is the answer that matches the id
*
* @global object
* @param object $choicegroup
* @param int $id
* @return string
*/
function choicegroup_get_option_text($choicegroup, $id) {
global $DB;
if ($result = $DB->get_record('groups', array('id' => $id))) {
return $result->name;
} else {
return get_string("notanswered", "choicegroup");
}
}
/*
* Returns DB records of groups used by the choicegroup activity
*
* @global object
* @param object $choicegroup
* @return array
*/
function choicegroup_get_groups($choicegroup) {
global $DB;
if (is_numeric($choicegroup)) {
$choicegroupid = $choicegroup;
}
else {
$choicegroupid = $choicegroup->id;
}
$groups = array();
$options = $DB->get_records('choicegroup_options', array('choicegroupid' => $choicegroupid));
foreach ($options as $option) {
if ($group = $DB->get_record('groups', array('id' => $option->groupid)))
$groups[] = $group;
}
return $groups;
}
/**
* Gets a full choicegroup record
*
* @global object
* @param int $choicegroupid
* @return object|bool The choicegroup or false
*/
function choicegroup_get_choicegroup($choicegroupid) {
global $DB;
if ($choicegroup = $DB->get_record("choicegroup", array("id" => $choicegroupid))) {
if ($options = $DB->get_records("choicegroup_options", array("choicegroupid" => $choicegroupid), "id")) {
foreach ($options as $option) {
$choicegroup->option[$option->id] = $option->groupid;
$choicegroup->maxanswers[$option->id] = $option->maxanswers;
}
return $choicegroup;
}
}
return false;
}
/**
* @return array
*/
function choicegroup_get_view_actions() {
return array('view','view all','report');
}
/**
* @return array
*/
function choicegroup_get_post_actions() {
return array('choose','choose again');
}
/**
* Implementation of the function for printing the form elements that control
* whether the course reset functionality affects the choicegroup.
*
* @param object $mform form passed by reference
*/
function choicegroup_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'choicegroupheader', get_string('modulenameplural', 'choicegroup'));
$mform->addElement('advcheckbox', 'reset_choicegroup', get_string('removeresponses','choicegroup'));
}
/**
* Course reset form defaults.
*
* @return array
*/
function choicegroup_reset_course_form_defaults($course) {
return array('reset_choicegroup'=>1);
}
/**
* @global object
* @global object
* @global object
* @uses CONTEXT_MODULE
* @param object $choicegroup
* @param object $cm
* @return array
*/
function choicegroup_get_response_data($choicegroup, $cm) {
global $CFG;
$context = context_module::instance($cm->id);
/// Initialise the returned array, which is a matrix: $allresponses[responseid][userid] = responseobject
$allresponses = array();
/// First get all the users who have access here
/// To start with we assume they are all "unanswered" then move them later
$allresponses[0] = get_enrolled_users($context, 'mod/choicegroup:choose', 0, user_picture::fields('u', array('idnumber')), 'u.lastname ASC,u.firstname ASC');
if ($allresponses[0]) {
// if groupmembersonly used, remove users who are not in any group
if (!empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
$allresponses[0] = array_intersect_key($allresponses[0], $groupingusers);
}
}
}
foreach ($allresponses[0] as $user) {
$currentAnswers = choicegroup_get_user_answer($choicegroup, $user, TRUE);
if ($currentAnswers != false) {
foreach ($currentAnswers as $current) {
$allresponses[$current->id][$user->id] = clone($allresponses[0][$user->id]);
$allresponses[$current->id][$user->id]->timemodified = $current->timeuseradded;
}
unset($allresponses[0][$user->id]); // Remove from unanswered column
}
}
return $allresponses;
}
/**
* Returns all other caps used in module
*
* @return array
*/
function choicegroup_get_extra_capabilities() {
return array('moodle/site:accessallgroups');
}
/**
* @uses FEATURE_GROUPS
* @uses FEATURE_GROUPINGS
* @uses FEATURE_GROUPMEMBERSONLY
* @uses FEATURE_MOD_INTRO
* @uses FEATURE_COMPLETION_TRACKS_VIEWS
* @uses FEATURE_GRADE_HAS_GRADE
* @uses FEATURE_GRADE_OUTCOMES
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed True if module supports feature, null if doesn't know
*/
function choicegroup_supports($feature) {
switch($feature) {
case FEATURE_GROUPS: return true;
case FEATURE_GROUPINGS: return true;
case FEATURE_GROUPMEMBERSONLY: return true;
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_BACKUP_MOODLE2: return true;
case FEATURE_SHOW_DESCRIPTION: return true;
default: return null;
}
}
/**
* Adds module specific settings to the settings block
*
* @param settings_navigation $settings The settings navigation object
* @param navigation_node $choicegroupnode The node to add module settings to
*/
function choicegroup_extend_settings_navigation(settings_navigation $settings, navigation_node $choicegroupnode) {
global $PAGE;
if (has_capability('mod/choicegroup:readresponses', $PAGE->cm->context)) {
$groupmode = groups_get_activity_groupmode($PAGE->cm);
if ($groupmode) {
groups_get_activity_group($PAGE->cm, true);
}
if (!$choicegroup = choicegroup_get_choicegroup($PAGE->cm->instance)) {
print_error('invalidcoursemodule');
return false;
}
$allresponses = choicegroup_get_response_data($choicegroup, $PAGE->cm, $groupmode); // Big function, approx 6 SQL calls per user
$responsecount = 0;
$respondents = array();
foreach($allresponses as $optionid => $userlist) {
if ($optionid) {
$responsecount += count($userlist);
if ($choicegroup->multipleenrollmentspossible) {
foreach ($userlist as $user) {
if (!in_array($user->id, $respondents)) {
$respondents[] = $user->id;
}
}
}
}
}
$viewallresponsestext = get_string("viewallresponses", "choicegroup", $responsecount);
if ($choicegroup->multipleenrollmentspossible == 1) {
$viewallresponsestext .= ' ' . get_string("byparticipants", "choicegroup", count($respondents));
}
$choicegroupnode->add($viewallresponsestext, new moodle_url('/mod/choicegroup/report.php', array('id'=>$PAGE->cm->id)));
}
}
/**
* Obtains the automatic completion state for this choicegroup based on any conditions
* in forum settings.
*
* @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, $type if conditions not set.
*/
function choicegroup_get_completion_state($course, $cm, $userid, $type) {
global $DB;
// Get choicegroup details
$choicegroup = $DB->get_record('choicegroup', array('id'=>$cm->instance), '*', MUST_EXIST);
// If completion option is enabled, evaluate it and return true/false
if($choicegroup->completionsubmit) {
$useranswer = choicegroup_get_user_answer($choicegroup, $userid);
return $useranswer !== false;
} else {
// Completion option is not enabled so just return $type
return $type;
}
}
/**
* Return a list of page types
* @param string $pagetype current page type
* @param stdClass $parentcontext Block's parent context
* @param stdClass $currentcontext Current context of block
*/
function choicegroup_page_type_list($pagetype, $parentcontext, $currentcontext) {
$module_pagetype = array('mod-choicegroup-*'=>get_string('page-mod-choicegroup-x', 'choice'));
return $module_pagetype;
}