A quick hack to allow anonymising of all names.
You can make everyone have the name "Bruce" if you want. }-)
This commit is contained in:
@@ -234,6 +234,11 @@ $CFG->admin = 'admin';
|
||||
// Print to footer (works with the default theme)
|
||||
// define('MDL_PERFTOFOOT', true);
|
||||
//
|
||||
// Force displayed usernames
|
||||
// A little hack to anonymise user names for all students. If you set these
|
||||
// then all non-teachers will always see these for every person.
|
||||
// $CFG->forcefirstname = 'Bruce';
|
||||
// $CFG->forcelastname = 'Simpson';
|
||||
|
||||
//=========================================================================
|
||||
// ALL DONE! To continue installation, visit your main page with a browser
|
||||
|
||||
@@ -1984,6 +1984,15 @@ function fullname($user, $override=false) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (!$override) {
|
||||
if (!empty($CFG->forcefirstname)) {
|
||||
$user->firstname = $CFG->forcefirstname;
|
||||
}
|
||||
if (!empty($CFG->forcelastname)) {
|
||||
$user->lastname = $CFG->forcelastname;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($SESSION->fullnamedisplay)) {
|
||||
$CFG->fullnamedisplay = $SESSION->fullnamedisplay;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user