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:
moodler
2005-05-10 06:18:30 +00:00
parent 74528955bd
commit 4c20222852
2 changed files with 14 additions and 0 deletions
+5
View File
@@ -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
+9
View File
@@ -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;
}