|
Hi Petr,
I agree with you that it is not good to add and add fields in the course table to configure just another course setting. The feature to configure that students can enrol in one or many groups has indeed little priority. However that feature as such that they can enrol themselves and not by the teacher is a reasonable one, espescially if they enrol themselves in the course, so why not also into groups. And also the possibility to configure the max. number of group members for a group. We discussed with Martin in Heidelberg the alternative "choice". He did not like it so much because it is kind of workaraund - you use an activity for such a thing like group functionality. Instead he was really interested in the code modifications which directly affect the group functionality. I know the choice alternative and we use it also at our organization. With a choice students can select their preferred group themselves. But still with standard Moodle the teacher has to create the groups and distribute the students after the choice is completed. For this we added a little modification to the file mod/choice/report.php: Here is the diff: 253a254,289 Maybe, you can discuss this with Martin? I could also imagine to use a (new) capability like "moodle/course:managemygroupmembership" which allows a user to enrol himself into a group. I do not agree on this with Martin
we have a little meeting tomorrow, I hope we can get to some conclusion Anyway we all agree we need such feature, the technical stuff and implementation is just a detail. I really would split this into two:
1- The capabilities needed to allow one student to add/delete himself to/from a group (2 capabilities, IMO). 1) should/could be implemented as a "pure" roles/capabilities solution and it has been requested a lot of times in forums... or perhaps a custom utility could address it, offering students what groups can be selected and other types of controls. 2) well that's IMO more difficult to address, because the possibilities are infinite (max number of users in a group, define groups as mandatory disjunct, to force one participant to be added to only one from a given set, date controlling when participants can add themselves....) and we should analyse it completely before starting new developments. Just one quick thought, ciao Hi Gisela,
yes, it would be great to get this new feature in Moodle as soon as possible. I do not think that this feature should get little priority. I our daily work at school we need to split our classes and learning groups into smaller groups .... why can't we do this in Moodle. I think it should be very important to have an additional thing like max number of students in a group. If I want to get a classroom work in selforganized groups then the students should enrol into one or many groups theirself. If I want to get small number of students within each group then Moodle must know the max number of students. Ralf Hi! I just found this bug (thanks, Ralf).
I'm very much against making this a mod activity (my general rule is that if it can't be used every week in a 16 week course then it shouldn't be an activity) and all for making it a core feature that appears part of the groups interface. I agree it would be very useful for all kinds of things (seminars, project work) to allow:
I feel pretty sure an elegant way to do this must be possible. I've not looked at these patches yet (thanks, Gisela! Nice to meet you too!) but hopefully can do so soon. 1/ if it is not a module we need new tables and fields in db which disqualifies it from 1.9.x
2/ if it is not a module it would be much much harder to tweak and customize because you can not tweak core tables 3/ it may be definitively used every week, because each week may use different grouping At the moment I'm still leaning to core tables and API (to keep all group stuff together, and it's natural to add 1-1 fields to groups table) but there could be a very light activity module (with a setting to choose a grouping) so that a teacher could insert a "group choice" activity in the course. Perhaps we could even expand Choice to have subtypes like Assignment.
The last thing we need is a another set of interfaces and rules for groups. Teachers may need to monitor who is in which group and make modifications to membership too. These self elected groups will need to be taken into account with other groups in a course and must have equal opportunity to utilise groupings too. Implementing as a module just throws the entire logic of the current method of doing things. And it needs to be roles based IMO.
It strikes me that an issue is how students access the interface for managing their own group membership. Why not a groups icon where next to the activity icon where students have the necessary capability(s) and the module has self select groups enabled. When viewing the module an icon (like Logs). Hmmm... just thinking there's lots of logic to consider if, say, students can join or leave a group in a forum set up for separate groups... plus lots of other interesting scenarios. Martin: you said:
[ Show » ] Are you still leaning this way? I'm curious about the odds of this getting into 2.0. (We have a report due soon, and I need to put something in it) There is further comment here: http://tracker.moodle.org/browse/MDL-1310 Hi all:
I have just found this issue. I had discussed groups and groupings quite deeply with Petr for inclusion in 1.9. I DO have another way to perform tha task: allowing that students can self-assign to an existing (teacher-created) group. I DO have implemented this in 1.9.3 and it is now working in production. The solution Does'nt need to modify any core table, neither creates new ones. I use the "config" filed on groupings table to store the settings (applicable in a per-grouping basis, not per group: I am a groupings guy). I will attahch the code, or set a url for demo. OK, great. A quick reply!!
We have some development capacity. Just figuring out IF we go to Moodle, what to do about this issue. Yes I would still really like to see this in 2.0 (and possibly even 1.9). Enrique can you post your patches?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
I would personally prefer if it was implemented as separate module similar to current choice. The problem is we need much more settings for various different scenarios and there is no place for that in course table and I do not think we should add more stuff into that anyway. Ideally it should be possible to distribute students into groups from selected grouping, which means you need several different groups selections in one course. Current module framework should be suitable for this task and there would be no changes required in core code, everything could be contained in mod/choosegroup/* directory.
Petr