Among the various things we’re doing for UNE’s move to Moodle, one thing we thought would be cool would be to remove the ancient option Assignment type that allows only one student file per submission (and no teacher “response” files).
This gives us a stack of simple benefits:
First, add a config setting (in config.php):
$CFG->assignment_hide_uploadsingle = true;
Then tweak mod/assignment/lib.php as per the commit at https://github.com/une/moodle/commit/cf89f14ffc36cae22175874f6f737f4e773cfd74
The change is basically:
- $standardassignments = array('upload','online','uploadsingle','offline');
+ $standardassignments = array('upload','online','offline');
It doesn’t break any existing assignments of that type - just means your teachers won’t go creating new ones.