4 * Groups not used in course or activity
9 * Groups used, users do not see other groups
11 define('SEPARATEGROUPS', 1);
14 * Groups used, students see other groups
16 define('VISIBLEGROUPS', 2);
20 * Determines if a group with a given groupid exists.
21 * @param int $groupid The groupid to check for
22 * @return boolean True if the group exists, false otherwise or if an error
25 function groups_group_exists($groupid) {
26 return record_exists('groups', 'id', $groupid);
30 * Gets the name of a group with a specified id
31 * @param int $groupid The id of the group
32 * @return string The name of the group
34 function groups_get_group_name($groupid) {
35 return get_field('groups', 'name', 'id', $groupid);
39 * Returns the groupid of a group with the name specified for the course.
40 * Group names should be unique in course
41 * @param int $courseid The id of the course
42 * @param string $name name of group (without magic quotes)
43 * @return int $groupid
45 function groups_get_group_by_name($courseid, $name) {
46 if ($groups = get_records_select('groups', "courseid=$courseid AND name='".addslashes($name)."'")) {
53 * Returns the groupingid of a grouping with the name specified for the course.
54 * Grouping names should be unique in course
55 * @param int $courseid The id of the course
56 * @param string $name name of group (without magic quotes)
57 * @return int $groupid
59 function groups_get_grouping_by_name($courseid, $name) {
60 if ($groupings = get_records_select('groupings', "courseid=$courseid AND name='".addslashes($name)."'")) {
61 return key($groupings);
67 * Get the group object
68 * @param groupid ID of the group.
69 * @return group object
71 function groups_get_group($groupid) {
72 return get_record('groups', 'id', $groupid);
76 * Gets array of all groups in a specified course.
77 * @param int $courseid The id of the course.
78 * @param int $userid optional user id, returns only groups of the user.
79 * @param int $groupingid optional returns only groups in the specified grouping.
80 * @return array | false Returns an array of the group IDs or false if no records
81 * or an error occurred.
83 function groups_get_all_groups($courseid, $userid=0, $groupingid=0) {
86 // groupings are ignored when not enabled
87 if (empty($CFG->enablegroupings
)) {
91 if (!empty($userid)) {
92 $userfrom = ", {$CFG->prefix}groups_members gm";
93 $userwhere = "AND g.id = gm.groupid AND gm.userid = '$userid'";
99 if (!empty($groupingid)) {
100 $groupingfrom = ", {$CFG->prefix}groupings_groups gg";
101 $groupingwhere = "AND g.id = gg.groupid AND gg.groupingid = '$groupingid'";
107 return get_records_sql("SELECT g.*
108 FROM {$CFG->prefix}groups g $userfrom $groupingfrom
109 WHERE g.courseid = '$courseid' $userwhere $groupingwhere
114 * Determines if the user is a member of the given group.
116 * @uses $USER If $userid is null, use the global object.
117 * @param int $groupid The group to check for membership.
118 * @param int $userid The user to check against the group.
119 * @return boolean True if the user is a member, false otherwise.
121 function groups_is_member($groupid, $userid=null) {
128 return record_exists('groups_members', 'groupid', $groupid, 'userid', $userid);
132 * Determines if current or specified is member of any active group in activity
133 * @param object $cm coruse module object
134 * @param int $userid id of user, null menas $USER->id
135 * @return booelan true if user member of at least one group used in activity
137 function groups_has_membership($cm, $userid=null) {
140 static $cache = array();
142 // groupings are ignored when not enabled
143 if (empty($CFG->enablegroupings
)) {
147 if (empty($userid)) {
151 $cachekey = $userid.'|'.$cm->course
.'|'.$cm->groupingid
;
152 if (isset($cache[$cachekey])) {
153 return($cache[$cachekey]);
156 if ($cm->groupingid
) {
157 // find out if member of any group in selected activity grouping
159 FROM {$CFG->prefix}groups_members gm, {$CFG->prefix}groupings_groups gg
160 WHERE gm.userid = $userid AND gm.groupid = gg.groupid AND gg.groupingid = {$cm->groupingid}";
163 // no grouping used - check all groups in course
165 FROM {$CFG->prefix}groups_members gm, {$CFG->prefix}groups g
166 WHERE gm.userid = $userid AND gm.groupid = g.id AND g.courseid = {$cm->course}";
169 $cache[$cachekey] = record_exists_sql($sql);
171 return $cache[$cachekey];
175 * Returns the users in the specified group.
176 * @param int $groupid The groupid to get the users for
177 * @param int $fields The fields to return
178 * @param int $sort optional sorting of returned users
179 * @return array | false Returns an array of the users for the specified
180 * group or false if no users or an error returned.
182 function groups_get_members($groupid, $fields='u.*', $sort='lastname ASC') {
185 return get_records_sql("SELECT $fields
186 FROM {$CFG->prefix}user u, {$CFG->prefix}groups_members gm
187 WHERE u.id = gm.userid AND gm.groupid = '$groupid'
193 * Returns the users in the specified grouping.
194 * @param int $groupingid The groupingid to get the users for
195 * @param int $fields The fields to return
196 * @param int $sort optional sorting of returned users
197 * @return array | false Returns an array of the users for the specified
198 * group or false if no users or an error returned.
200 function groups_get_grouping_members($groupingid, $fields='u.*', $sort='lastname ASC') {
203 return get_records_sql("SELECT $fields
204 FROM {$CFG->prefix}user u
205 INNER JOIN {$CFG->prefix}groups_members gm ON u.id = gm.userid
206 INNER JOIN {$CFG->prefix}groupings_groups gg ON gm.groupid = gg.groupid
207 WHERE gg.groupingid = $groupingid
212 * Returns effective groupmode used in course
213 * @return integer group mode
215 function groups_get_course_groupmode($course) {
216 return $course->groupmode
;
220 * Returns effective groupmode used in activity, course setting
221 * overrides activity setting if groupmodeforce enabled.
222 * @return integer group mode
224 function groups_get_activity_groupmode($cm) {
227 // get course object (reuse COURSE if possible)
228 if ($cm->course
== $COURSE->id
) {
231 if (!$course = get_record('course', 'id', $cm->course
)) {
232 error('Incorrect course id in cm');
236 return empty($course->groupmodeforce
) ?
$cm->groupmode
: $course->groupmode
;
240 * Print group menu selector for course level.
241 * @param object $course course object
242 * @param string $urlroot return address
243 * @param boolean $return return as string instead of printing
244 * @return mixed void or string depending on $return param
246 function groups_print_course_menu($course, $urlroot, $return=false) {
249 if (!$groupmode = $course->groupmode
) {
257 $context = get_context_instance(CONTEXT_COURSE
, $course->id
);
258 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
259 $allowedgroups = groups_get_all_groups($course->id
, 0);
261 $allowedgroups = groups_get_all_groups($course->id
, $USER->id
);
264 $activegroup = groups_get_course_group($course, true);
266 $groupsmenu = array();
267 if (!$allowedgroups or $groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
268 $groupsmenu[0] = get_string('allparticipants');
271 if ($allowedgroups) {
272 foreach ($allowedgroups as $group) {
273 $groupsmenu[$group->id
] = format_string($group->name
);
277 if ($groupmode == VISIBLEGROUPS
) {
278 $grouplabel = get_string('groupsvisible');
280 $grouplabel = get_string('groupsseparate');
283 if (count($groupsmenu) == 1) {
284 $groupname = reset($groupsmenu);
285 $output = $grouplabel.': '.$groupname;
287 $output = popup_form($urlroot.'&group=', $groupsmenu, 'selectgroup', $activegroup, '', '', '', true, 'self', $grouplabel);
290 $output = '<div class="groupselector">'.$output.'</div>';
300 * Print group menu selector for activity.
301 * @param object $cm course module object
302 * @param string $urlroot return address
303 * @param boolean $return return as string instead of printing
304 * @return mixed void or string depending on $return param
306 function groups_print_activity_menu($cm, $urlroot, $return=false) {
309 // groupings are ignored when not enabled
310 if (empty($CFG->enablegroupings
)) {
314 if (!$groupmode = groups_get_activity_groupmode($cm)) {
322 $context = get_context_instance(CONTEXT_MODULE
, $cm->id
);
323 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
324 $allowedgroups = groups_get_all_groups($cm->course
, 0, $cm->groupingid
); // any group in grouping (all if groupings not used)
326 $allowedgroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
); // only assigned groups
329 $activegroup = groups_get_activity_group($cm, true);
331 $groupsmenu = array();
332 if (!$allowedgroups or $groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
333 $groupsmenu[0] = get_string('allparticipants');
336 if ($allowedgroups) {
337 foreach ($allowedgroups as $group) {
338 $groupsmenu[$group->id
] = format_string($group->name
);
342 if ($groupmode == VISIBLEGROUPS
) {
343 $grouplabel = get_string('groupsvisible');
345 $grouplabel = get_string('groupsseparate');
348 if (count($groupsmenu) == 1) {
349 $groupname = reset($groupsmenu);
350 $output = $grouplabel.': '.$groupname;
352 $output = popup_form($urlroot.'&group=', $groupsmenu, 'selectgroup', $activegroup, '', '', '', true, 'self', $grouplabel);
355 $output = '<div class="groupselector">'.$output.'</div>';
365 * Returns group active in course, changes the group by default if 'group' page param present
367 * @param object $course course bject
368 * @param boolean $update change active group if group param submitted
369 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
371 function groups_get_course_group($course, $update=false) {
372 global $CFG, $USER, $SESSION;
374 if (!$groupmode = $course->groupmode
) {
379 // init activegroup array
380 if (!array_key_exists('activegroup', $SESSION)) {
381 $SESSION->activegroup
= array();
383 if (!array_key_exists($course->id
, $SESSION->activegroup
)) {
384 $SESSION->activegroup
[$course->id
] = array(SEPARATEGROUPS
=>array(), VISIBLEGROUPS
=>array());
387 // grouping used the first time - add first user group as default
388 if (!array_key_exists(0, $SESSION->activegroup
[$course->id
][$groupmode])) {
389 if ($usergroups = groups_get_all_groups($course->id
, $USER->id
, 0)) {
390 $fistgroup = reset($usergroups);
391 $SESSION->activegroup
[$course->id
][$groupmode][0] = $fistgroup->id
;
393 // this happen when user not assigned into group in SEPARATEGROUPS mode or groups do not exist yet
394 // mod authors must add extra checks for this when SEPARATEGROUPS mode used (such as when posting to forum)
395 $SESSION->activegroup
[$course->id
][$groupmode][0] = 0;
399 // set new active group if requested
400 $changegroup = optional_param('group', -1, PARAM_INT
);
401 if ($update and $changegroup != -1) {
402 $context = get_context_instance(CONTEXT_COURSE
, $course->id
);
404 if ($changegroup == 0) {
405 // do not allow changing to all groups without accessallgroups capability
406 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
407 $SESSION->activegroup
[$course->id
][$groupmode][0] = 0;
411 // first make list of allowed groups
412 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
413 $allowedgroups = groups_get_all_groups($course->id
, 0, 0);
415 $allowedgroups = groups_get_all_groups($course->id
, $USER->id
, 0);
418 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
419 $SESSION->activegroup
[$course->id
][$groupmode][0] = $changegroup;
424 return $SESSION->activegroup
[$course->id
][$groupmode][0];
428 * Returns group active in activity, changes the group by default if 'group' page param present
430 * @param object $cm course module object
431 * @param boolean $update change active group if group param submitted
432 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
434 function groups_get_activity_group($cm, $update=false) {
435 global $CFG, $USER, $SESSION;
437 // groupings are ignored when not enabled
438 if (empty($CFG->enablegroupings
)) {
442 if (!$groupmode = groups_get_activity_groupmode($cm)) {
447 // init activegroup array
448 if (!array_key_exists('activegroup', $SESSION)) {
449 $SESSION->activegroup
= array();
451 if (!array_key_exists($cm->course
, $SESSION->activegroup
)) {
452 $SESSION->activegroup
[$cm->course
] = array(SEPARATEGROUPS
=>array(), VISIBLEGROUPS
=>array());
455 // grouping used the first time - add first user group as default
456 if (!array_key_exists($cm->groupingid
, $SESSION->activegroup
[$cm->course
][$groupmode])) {
457 if ($usergroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
)) {
458 $fistgroup = reset($usergroups);
459 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = $fistgroup->id
;
461 // this happen when user not assigned into group in SEPARATEGROUPS mode or groups do not exist yet
462 // mod authors must add extra checks for this when SEPARATEGROUPS mode used (such as when posting to forum)
463 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = 0;
467 // set new active group if requested
468 $changegroup = optional_param('group', -1, PARAM_INT
);
469 if ($update and $changegroup != -1) {
470 $context = get_context_instance(CONTEXT_MODULE
, $cm->id
);
472 if ($changegroup == 0) {
473 // do not allow changing to all groups without accessallgroups capability
474 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
475 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = 0;
479 // first make list of allowed groups
480 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context)) {
481 $allowedgroups = groups_get_all_groups($cm->course
, 0, $cm->groupingid
); // any group in grouping (all if groupings not used)
483 $allowedgroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
); // only assigned groups
486 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
487 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = $changegroup;
492 return $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
];
496 * Determine if a course module is currently visible to a user
497 * @uses $USER If $userid is null, use the global object.
498 * @param int $cm The course module
499 * @param int $userid The user to check against the group.
500 * @return boolean True if the user can view the course module, false otherwise.
502 function groups_course_module_visible($cm, $userid=null) {
505 if (empty($userid)) {
508 if (empty($CFG->enablegroupings
)) {
511 if (empty($cm->groupmembersonly
)) {
514 if (groups_has_membership($cm, $userid) ||
has_capability('moodle/site:accessallgroups', get_context_instance(CONTEXT_MODULE
, $cm->id
), $userid)) {